zoukankan      html  css  js  c++  java
  • 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>
  • 相关阅读:
    OkHttp的使用
    Adapter的实现
    RxJava的学习与实现
    Blueprint的实现
    The second group meeting!
    读书笔记1
    The First Team Meeting!
    java----使用NIO进行快速的文件拷贝
    java——类的学习(2)
    java——类的学习(1)
  • 原文地址:https://www.cnblogs.com/error404/p/2313031.html
Copyright © 2011-2022 走看看