-1
我想在我的片段佈局的列表視圖的末尾添加webview。在Android的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
幫助我。
請發表您的代碼 –
@IntelliJ阿米亞·:我已經說過,我amgetting ClassCastException異常.. – AndiGeeky