整个屏幕不显示滚动条

发布于 2024-11-16 00:36:02 字数 1701 浏览 1 评论 0原文

我在我的应用程序中使用了滚动视图。如果项目太多,则会出现垂直滚动条。但如果项目很少,则全屏时不会出现垂直滚动条。是否可以全屏显示滚动条?

<ScrollView android:id="@+id/tile_view"
                android:layout_width="fill_parent" android:layout_height="fill_parent">
                <LinearLayout android:orientation="vertical"
                    android:layout_width="wrap_content" android:layout_height="wrap_content">
                    <Button android:id="@+id/banner_btn" android:layout_width="wrap_content"
                        android:layout_height="wrap_content" android:background="@drawable/banner"
                        android:textColor="@android:color/white" android:textStyle="bold"
                        android:ellipsize="end" />

                    <LinearLayout android:id="@+id/left_right_columns"
                        android:paddingLeft="10dip" android:paddingRight="10dip"
                        android:paddingBottom="10dip" android:layout_width="fill_parent"
                        android:orientation="horizontal" android:layout_height="wrap_content">

                        <LinearLayout android:id="@+id/left_column"
                            android:layout_marginRight="9dip" android:layout_width="wrap_content"
                            android:layout_height="wrap_content" android:orientation="vertical" />

                        <LinearLayout android:id="@+id/right_column"
                            android:layout_width="wrap_content" android:layout_height="wrap_content"
                            android:orientation="vertical" />
                    </LinearLayout>
                </LinearLayout>
            </ScrollView>

I have used the scroll view in my application. if there are are too many items , the vertical scroll bar appears. But if there are only few items ,then the vertical scroll bar doesnt appear for the full screen. Is it possible to show a scroll bar for the full screen?

<ScrollView android:id="@+id/tile_view"
                android:layout_width="fill_parent" android:layout_height="fill_parent">
                <LinearLayout android:orientation="vertical"
                    android:layout_width="wrap_content" android:layout_height="wrap_content">
                    <Button android:id="@+id/banner_btn" android:layout_width="wrap_content"
                        android:layout_height="wrap_content" android:background="@drawable/banner"
                        android:textColor="@android:color/white" android:textStyle="bold"
                        android:ellipsize="end" />

                    <LinearLayout android:id="@+id/left_right_columns"
                        android:paddingLeft="10dip" android:paddingRight="10dip"
                        android:paddingBottom="10dip" android:layout_width="fill_parent"
                        android:orientation="horizontal" android:layout_height="wrap_content">

                        <LinearLayout android:id="@+id/left_column"
                            android:layout_marginRight="9dip" android:layout_width="wrap_content"
                            android:layout_height="wrap_content" android:orientation="vertical" />

                        <LinearLayout android:id="@+id/right_column"
                            android:layout_width="wrap_content" android:layout_height="wrap_content"
                            android:orientation="vertical" />
                    </LinearLayout>
                </LinearLayout>
            </ScrollView>

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

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

发布评论

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

评论(1

╰ゝ天使的微笑 2024-11-23 00:36:02

好吧,您可以像这样使用 ScrollViewXML 属性,

android:scrollbarAlwaysDrawVerticalTrack="true"
android:scrollbarAlwaysDrawHorizontalTrack="true"

请参阅文档了解更多信息。

Well you could use XML attribute of ScrollView like this

android:scrollbarAlwaysDrawVerticalTrack="true"
android:scrollbarAlwaysDrawHorizontalTrack="true"

See Documentation for more information.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文