我想创建一个水平滚动视图,就像图像
中显示的那样在android小部件中,我在复合部分找到了Horizontal Scroll View小部件,但不知道如何使用它。请帮助
答案 0 :(得分:2)
首先创建xml file
并添加HorizontalScrollView
,然后将一个布局作为子项添加到此。然后你可以添加任何号码。视图对新添加的孩子来说是完整的scroll
。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<!-- child views here -->
</RelativeLayout>
</HorizontalScrollView>
</LinearLayout>