服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - android listview 水平滚动和垂直滚动的小例子

android listview 水平滚动和垂直滚动的小例子

2021-01-21 14:34Android开发网 Android

android listview 水平滚动和垂直滚动的小例子,需要的朋友可以参考一下

网上有很多解决 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>

延伸 · 阅读

精彩推荐