Androidレイアウトファイルでこれをリストビューレイアウトに作成しようとしています。ListView は次のように構成されています。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".Table" >
<ListView
android:id="@+id/linearLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="launch_booklayout"
android:text="@string/demo"
android:textIsSelectable="true" />
<TextView
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="launch_booklayout"
android:text="@string/demo"
android:textIsSelectable="true" />
</ListView>
Eclipseで次のエラーが発生します。
リスト/グリッドは、XML で宣言された子を持つべきではありません
誰が私が何を修正すべきか知っていますか? ありがとう