滚动条不起作用?

发布于 2024-12-16 10:54:48 字数 739 浏览 0 评论 0原文

<ScrollView
    android:id="@+id/sv_chat"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_above="@+id/layout_bottom"
    android:background="#ffffffff" >

    <LinearLayout
        android:id="@+id/layout_chatrecord"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_gravity="bottom"
        android:orientation="vertical" >
    </LinearLayout>
</ScrollView>

如果我在 LinearLayout 中添加 android:layout_gravity="bottom" ,则 ScrollView 无法工作。 当我一直将视图放入LinearLayout中时,视图将从下向上出现,这是我想要的。而结果是ScrollView无法工作,视图将首先看不到,怎么解决?

<ScrollView
    android:id="@+id/sv_chat"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_above="@+id/layout_bottom"
    android:background="#ffffffff" >

    <LinearLayout
        android:id="@+id/layout_chatrecord"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_gravity="bottom"
        android:orientation="vertical" >
    </LinearLayout>
</ScrollView>

If I add android:layout_gravity="bottom" in the LinearLayout , the ScrollView can't work.
When I put view in LinearLayout all the time,the view will appear from the bottom up which is I want.While the result is ScrollView can't work,the view put first can't be seen.How to solve it?

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

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

发布评论

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

评论(1

白云不回头 2024-12-23 10:54:49

试试这个..

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/ScrollView01" android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <LinearLayout 
        android:orientation="vertical" android:layout_width="fill_parent"
        android:layout_height="fill_parent" android:scrollbars="vertical"
        android:scrollbarAlwaysDrawVerticalTrack="true">
</LinearLayout>
</ScrollView>

Try this..

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/ScrollView01" android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <LinearLayout 
        android:orientation="vertical" android:layout_width="fill_parent"
        android:layout_height="fill_parent" android:scrollbars="vertical"
        android:scrollbarAlwaysDrawVerticalTrack="true">
</LinearLayout>
</ScrollView>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文