※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
※main.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:textSize="20sp" > <EditText android:id="@+id/edit" android:layout_width="fill_parent" android:layout_height="wrap_content" android:lines="5" /> <Button android:id="@+id/load" android:text="@string/load_label" android:layout_width="fill_parent" android:layout_height="wrap_content" /> <Button android:id="@+id/save" android:text="@string/save_label" android:layout_width="fill_parent" android:layout_height="wrap_content" /> </LinearLayout> ※string.xml <?xml version="1.0" encoding="utf-8"?> <resources> <string name="load_label">検索</string> <string name="save_label">保存</string> <string name="app_name">SampleApp</string> </resources>
<< 前へ | 次へ >> |