gpt4 book ai didi

android - 如何在 Android 上非常大的 WebView 下设置按钮?

转载 作者:行者123 更新时间:2023-11-30 03:09:21 24 4
gpt4 key购买 nike

我在大型 muptipage webview(用户协议(protocol))下设置按钮时遇到问题。现在我可以在滚动 webview 时一直看到按钮。

当我将 android:layout_below="@+id/rl_relativeLayout 添加到布局中的按钮时,我只能看到 WebView 内容。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<RelativeLayout
android:id="@+id/rl_relativeLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_margin="10dip" >
<WebView
android:id="@+id/web_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="gone"
/>

</RelativeLayout>

<RelativeLayout
android:id="@+id/rl_relativeLayout2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center_horizontal"
android:layout_margin="10dip" >
<Button
android:id="@+id/agreement_acceptance"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="3dp"
android:text="OK" />
</RelativeLayout>

最佳答案

使用ScrollView

<ScrollView android:layout_height="fill_parent"
android:layout_width="fill_parent">

<LinearLayout android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="vertical">

<WebView android:layout_height="wrap_content"
android:layout_width="fill_parent"/>

<Button android:layout_height="wrap_content"
android:layout_width="fill_parent"/>

</LinearLayout>

</ScrollView>

关于android - 如何在 Android 上非常大的 WebView 下设置按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21259714/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com