整个屏幕不显示滚动条
我在我的应用程序中使用了滚动视图。如果项目太多,则会出现垂直滚动条。但如果项目很少,则全屏时不会出现垂直滚动条。是否可以全屏显示滚动条?
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,您可以像这样使用
ScrollView
的XML
属性,请参阅文档了解更多信息。
Well you could use
XML
attribute ofScrollView
like thisSee Documentation for more information.