且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

GridView 水平方向滑动

更新时间:2022-09-15 23:06:25

根据自己的需求,简单修改下就行了。

 

GridView 水平方向滑动
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width
="fill_parent"
android:layout_height
="fill_parent"
>
<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height
="fill_parent"
android:scrollbars
="none">
<FrameLayout android:layout_width="fill_parent"
android:layout_height
="160dp">
<LinearLayout android:layout_width="1000dip"
android:layout_height
="fill_parent"
>
<GridView
android:layout_gravity="center"
android:layout_width
="fill_parent"
android:layout_height
="fill_parent"
android:id
="@+id/gridview"
android:horizontalSpacing
="0dip"
android:verticalSpacing
="0dip"
android:stretchMode
="spacingWidthUniform"
android:columnWidth
="40dip"
android:gravity
="center"
/>
</LinearLayout>
</FrameLayout>
</HorizontalScrollView>
</LinearLayout>
GridView 水平方向滑动

 


本文转自java豆子博客园博客,原文链接:http://www.cnblogs.com/error404/archive/2012/01/05/2313031.html,如需转载请自行联系原作者