android textview被视为linearlayout

时间:2013-05-22 09:32:53

标签: android textview simpleadapter

我正在尝试使用textviews填充一个简单的适配器,但他似乎看到其中一个(并且只有一个)作为线性布局,向我发送错误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"
     />

谢谢你。

0 个答案:

没有答案