我正在尝试使用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});
现在,如果我取出quantite
和R.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"
/>
谢谢你。