0

我正在尝试用 textviews 填充一个简单的适配器,但他似乎将其中一个(并且只有一个)视为线性布局,向我发送了 errore android.linearlayout is not a view that can be bound by this simpleadapter。这是java

final SimpleAdapter mSchedule = new SimpleAdapter (this.getBaseContext(), listItem, R.layout.mainafficheitem,       
    new String[] {"description","quantite", "numero", "prix"}, 
new int[] {R.id.mainlistdescription,R.id.mainlistquantite, R.id.mainlistnumero, R.id.mainlistprix});

现在,如果我取出quantiteR.id.mainlistquantite取出,但使用时会因错误而崩溃。在我的 xml 文件中,R.id.mainlistquantite确实是一个 textview :

<TextView
    android:id="@+id/mainlistquantite"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:maxLines="4"
    android:layout_alignParentLeft="true"
    android:layout_toLeftOf="@+id/consultaffichelayoutdroit"
    android:textSize="12sp"
    android:padding="10dp"
     />

提前感谢。

4

0 回答 0