我创建了一个如下所示的布局:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TableRow>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content">
</TableRow>
<TableRow>
<TextView
android:text="Name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<AutoCompleteTextView android:id="@+id/name"
android:layout_width="150dp"
android:layout_height="wrap_content"/>
</TableRow>
</TableLayout>
</ScrollView>
在ClassCastException
使用TextView
而没有TableRow
的情况下,它会抛出{{1}}。为什么?