※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
※main.xmlの追加 <CheckBox android:text="@string/check_label" android:id="@+id/check1" android:layout_width="wrap_content" android:layout_height="wrap_content" /> ※string.xmlの追加 <string name="check_label">チェックボックス</string> ※SampleAppの追加 CheckBox check = (CheckBox)this.findViewById(R.id.check1); check.setChecked(true);
次へ >> |