我有两个布局文件,一个用于主要活动,另一个 XML 文件用于自定义列表视图的 alyout。我想访问我的布局文件中视图的 ID,但在 R 类中只有来自主要活动 XML 文件的 ID。我想知道如何将 ID 添加到 R 类或通过任何其他方式访问它们。
感谢和抱歉,如果这是一个蹩脚的问题,但我对 android 相当陌生。
这是主要活动
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/list1"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</ListView>
</LinearLayout>
这是布局文件
<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/imgSports"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:gravity="center_vertical"/>
<TextView android:id="@+id/rowTitle"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_vertical"/>
</LinearLayout>