Android ScrollView + TableLayout + AutoCompleteTextView抛出ClassCastException

时间:2013-11-08 07:34:16

标签: android android-layout autocompletetextview android-tablelayout android-scrollview

我创建了一个如下所示的布局:

       <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}}。为什么?

0 个答案:

没有答案