学习Android适配器Adapter的时候,无法理解int textViewResourceId,求大神帮忙解析解析??? 50
1个回答
展开全部
textViewResourceId 是你的布局资源文件的id值,就是类似下面的R.layout.list_item。这个布局文件就是你显示的每条列表项的布局。
望采纳。
list_item.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<ImageView
android:id="@+id/img"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher"
/>
<TextView
android:id="@+id/tv"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
望采纳。
list_item.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<ImageView
android:id="@+id/img"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher"
/>
<TextView
android:id="@+id/tv"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
更多追问追答
追问
为什么我不能直接写R.layout.activity_main呢
追答
这个textViewResourceId是你的adapter构造方法的参数,你可以类似如下这么写的:
ArrayAdapter adapter = new ArrayAdapter(
this,
R.layout.list_item,
R.id.tv,
getData());
望采纳
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询