我正在尝试在我的片段布局中在listview的末尾添加webview。
这是我的片段布局。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/txtTheQueue"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/txt_the_queue"
android:textStyle="bold" />
<ListView
android:id="@+id/list_queue"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/txtTheQueue" />
<WebView
android:id="@+id/webViewQueue"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/list_queue" />
</RelativeLayout>
我尝试将webview添加到listview的页脚。 但得到这个例外:
java.lang.ClassCastException: android.widget.RelativeLayout$LayoutParams cannot be cast to android.widget.AbsListView$LayoutParams
帮帮我。