Android 中的滚动问题

发布于 2024-11-29 04:46:43 字数 1196 浏览 1 评论 0原文

在我的应用程序中,我有一个具有以下布局的活动,

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="fill_parent" android:background="@color/white">
    <WebView android:id="@+id/detail_title" android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:textAppearance="?android:attr/textAppearanceMedium"
        android:padding="2dp" android:textColor="@android:color/black"
        android:background="@android:color/white" />
    <WebView android:id="@+id/detail_subtitle" android:orientation="vertical"
        android:layout_width="match_parent" android:layout_height="wrap_content"
        android:padding="2dp" android:background="@android:color/white" />
    <WebView android:id="@+id/wv3" android:orientation="vertical"
        android:layout_height="fill_parent" android:layout_width="fill_parent" 
        android:background="@android:color/white" />
</LinearLayout>

wv3 有很多正确显示的 html 文本,但问题是我只在 wv3 中滚动,而布局的其余部分保持静态,这非常令人恼火。我希望整个布局都有滚动,而不仅仅是 wv3。

In my application i have an activity which has the following layout

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="fill_parent" android:background="@color/white">
    <WebView android:id="@+id/detail_title" android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:textAppearance="?android:attr/textAppearanceMedium"
        android:padding="2dp" android:textColor="@android:color/black"
        android:background="@android:color/white" />
    <WebView android:id="@+id/detail_subtitle" android:orientation="vertical"
        android:layout_width="match_parent" android:layout_height="wrap_content"
        android:padding="2dp" android:background="@android:color/white" />
    <WebView android:id="@+id/wv3" android:orientation="vertical"
        android:layout_height="fill_parent" android:layout_width="fill_parent" 
        android:background="@android:color/white" />
</LinearLayout>

wv3 has a lot of html text which appears properly but the problem is that i am getting scroll only in wv3 and the rest of the layout remains static which is quite irritating. i want that the whole of the layout has scroll and not only wv3.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初熏 2024-12-06 04:46:43

像这样修改你的布局

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"        
    android:layout_width="match_parent" android:layout_height="match_parent">
    <LinearLayout android:orientation="vertical" android:layout_width="match_parent"         
        android:layout_height="wrap_content">
        <WebView android:layout_width="match_parent" android:layout_height="200dip"
            android:id="@+id/wv1"/>
        <WebView android:layout_width="match_parent" android:layout_height="200dip"
            android:id="@+id/wv2"/>
        <WebView android:layout_width="match_parent" android:layout_height="500dip"
            android:id="@+id/wv3"/>    
    </LinearLayout>
</ScrollView>

Modifiy your layout like this

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"        
    android:layout_width="match_parent" android:layout_height="match_parent">
    <LinearLayout android:orientation="vertical" android:layout_width="match_parent"         
        android:layout_height="wrap_content">
        <WebView android:layout_width="match_parent" android:layout_height="200dip"
            android:id="@+id/wv1"/>
        <WebView android:layout_width="match_parent" android:layout_height="200dip"
            android:id="@+id/wv2"/>
        <WebView android:layout_width="match_parent" android:layout_height="500dip"
            android:id="@+id/wv3"/>    
    </LinearLayout>
</ScrollView>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文