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

内容摘要
网上有很多解决 android listview 水平和垂直滚动的代码,我没有按照他们说的做(以前没搜到 O(∩_∩)O~) 我采用的是添加HorizontalScrollViewJava代码复制代码 代码如下: < S
文章正文
网上有很多解决 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>

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!