我不斷收到錯誤:ClassCastException異常的layoutInflater.inflate(...)
java.lang.ClassCastException: android.widget.FrameLayout cannot be cast to android.widget.LinearLayout
每當執行以下操作:
@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
LayoutInflater layoutInflater = LayoutInflater.from(parent.getContext());
LinearLayout mLinearLayout = (LinearLayout) layoutInflater.inflate(R.layout.item, parent, false);
return new ViewHolder(mLinearLayout);
}
當是沒有意義的,因爲這是我的xml文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/item_text_view"/>
</LinearLayout>
因此,XML文件的根應該是LinearLayout,所以inflater應該返回LinearLayout,其中我它獲取FrameLayout?
這是佈局文件夾中名爲'item'的文件的xml嗎? – Vucko
是的。 [15chars] – CaptainForge
你爲什麼需要演員?只需使用'View v = inflater.inflate' –