在我的应用程序中,我需要打开一个包含长html文件的WebView。
我想在WebView的末尾添加一个TextView,这样只有当用户完成滚动WebView时,TextView才会显示。
我已尝试使用此布局,但毫不奇怪,当我完成滚动WebView后TextView无法显示
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TextView" />
</LinearLayout>
答案 0 :(得分:1)
您应添加包含ScrollView
的{{1}}。在你的代码中:
LinearLayout