android listview 水平滚动和垂直滚动的小例子
程序员文章站
2023-12-04 21:22:16
网上有很多解决 android listview 水平和垂直滚动的代码,我没有按照他们说的做(以前没搜到 o(∩_∩)o~) 我采用的是添加horizontalscroll...
网上有很多解决 android listview 水平和垂直滚动的代码,我没有按照他们说的做(以前没搜到 o(∩_∩)o~) 我采用的是添加horizontalscrollview
java代码
< scrollview android:id="@+id/scrollview01"
android:layout_height="300px"
android:layout_x="16px"
android:layout_y="84px"
android:layout_width="290px"
android:scrollbars="horizontal|vertical">
< horizontalscrollview android:id="@+id/horizontalscrollview01"
android:layout_height="fill_parent"
android:layout_width="wrap_content">
< linearlayout android:id="@+id/linearlayout02"
android:layout_width="wrap_content"
android:orientation="vertical"
android:layout_height="fill_parent">
< listview android:id="@+id/listview"
android:layout_height="300px"
android:layout_width="fill_parent">
< /listview>
< /linearlayout>
< /horizontalscrollview>
< /scrollview>
java代码
复制代码 代码如下:
< scrollview android:id="@+id/scrollview01"
android:layout_height="300px"
android:layout_x="16px"
android:layout_y="84px"
android:layout_width="290px"
android:scrollbars="horizontal|vertical">
< horizontalscrollview android:id="@+id/horizontalscrollview01"
android:layout_height="fill_parent"
android:layout_width="wrap_content">
< linearlayout android:id="@+id/linearlayout02"
android:layout_width="wrap_content"
android:orientation="vertical"
android:layout_height="fill_parent">
< listview android:id="@+id/listview"
android:layout_height="300px"
android:layout_width="fill_parent">
< /listview>
< /linearlayout>
< /horizontalscrollview>
< /scrollview>
上一篇: Android中的Button自定义点击效果实例代码
下一篇: Android 情景模式的设置代码