回答編集履歴
1
誤字
answer
CHANGED
@@ -20,6 +20,7 @@
|
|
20
20
|
@Override
|
21
21
|
public Dialog onCreateDialog(Bundle savedInstanceState) {
|
22
22
|
logDialog=super.onCreateDialog(savedInstanceState);
|
23
|
+
//ダイアログの外をクリックしたもダイアログが閉じないようにする
|
23
24
|
logDialog.setCanceledOnTouchOutside(false);
|
24
25
|
return toguruDialog;
|
25
26
|
}
|
@@ -28,11 +29,12 @@
|
|
28
29
|
public View onCreateView(LayoutInflater i, ViewGroup c, Bundle savedInstanceState){
|
29
30
|
content = i.inflate(R.layout.fragment_toguru, null);
|
30
31
|
logDialog.setContentView(R.layout.fragment_toguru);
|
31
|
-
|
32
|
+
//レイアウトファイルに配置した戻るボタンを取得
|
32
33
|
Button back =(Button)content.findViewById(R.id.button_back);
|
33
34
|
logback.setOnClickListener(new View.OnClickListener() {
|
34
35
|
@Override
|
35
36
|
public void onClick(View v) {
|
37
|
+
//処理を書く。
|
36
38
|
back(v);
|
37
39
|
}
|
38
40
|
});
|