質問編集履歴

1

ソースを修正しました。

2020/03/09 08:52

投稿

watchdogs
watchdogs

スコア54

test CHANGED
File without changes
test CHANGED
@@ -10,13 +10,25 @@
10
10
 
11
11
  現在のソースです。
12
12
 
13
+
14
+
15
+ @Override
16
+
17
+ protected void onCreate(Bundle savedInstanceState) {
18
+
19
+ super.onCreate(savedInstanceState);
20
+
21
+ setContentView(R.layout.activity_setting);
22
+
23
+
24
+
13
- /* idがswitchButtonのSwitchを取得 */
25
+ /* idがswitchButtonのSwitchを取得 */
14
26
 
15
27
  final Switch switchButton = findViewById(R.id.switch1);
16
28
 
17
- SharedPreferences preference = PreferenceManager.getDefaultSharedPreferences(SetupActivity.this);//ここをどの様にかけば保存できるようになるのかわからない。
29
+ SharedPreferences preference = PreferenceManager.getDefaultSharedPreferences(SetupActivity.this);
18
30
 
19
- preference.edit();//ここをどの様にかけば保存できるようになるのかわからない。
31
+ preference.edit();
20
32
 
21
33
 
22
34
 
@@ -30,25 +42,49 @@
30
42
 
31
43
  public void onCheckedChanged(CompoundButton comButton, boolean isChecked){
32
44
 
33
-
45
+ // 表示する文字列をスイッチのオンオフで変える
46
+
47
+
48
+
49
+ // トグルスイッチがオンなら 
34
50
 
35
51
  if(isChecked) {
36
52
 
37
- //onされた時の処理
53
+ //トグルスイッチがONの時の処理を記載
38
54
 
39
- }
55
+ }
40
56
 
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
41
-
65
+ // オフなら デフォルト 強制的に0になる
42
66
 
43
67
  else{
44
68
 
45
- //OFFされた時の処理
69
+                      //トグルスイッチがONの時の処理を記載
46
70
 
47
- }
71
+                     }
72
+
73
+ }
74
+
75
+ }
76
+
77
+ );
78
+
79
+ }
48
80
 
49
81
 
50
82
 
51
- 下記省略
83
+
84
+
85
+
86
+
87
+
52
88
 
53
89
 
54
90