我有一个带有自定义行的 ListFragment,如下所示。
片段.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:gravity="top|center"
android:orientation="vertical"
android:background="@color/colorAppBackground">
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
自定义行.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="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Small Text"
android:id="@+id/rootCategory_TextView"
android:textStyle="bold"
android:padding="10dp"
android:textColor="@color/rootCategoryText"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/subCategory_RecyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="horizontal" />
</LinearLayout>
我收到以下错误:
ArrayAdapter requires the resource ID to be a TextView
.....
android.widget.LinearLayout cannot be cast to android.widget.TextView
如果我从 Custom_row.xml 中删除 LinearLayout ViewGroup 并直接添加 textView 但我的自定义行需要多个视图并且我已经厌倦了使用所有类型的 ViewGroups 但它们都给出了上述转换错误