Android横向滑动的GridView

本文介绍了如何在Android中创建横向滑动的GridView。通过特定的布局设置,可以实现单行横向滚动的效果,适合用于展示横向排列的数据。作者鼓励大家交流讨论,分享优化方案。
摘要由CSDN通过智能技术生成

GridView的使用在android中是比较频繁的,常规的GridView就是类似于表格形式的存在,说的可能不是特别的确切。而有些时候,我们会使用到单行的横向滑动的GridView的控件,今天就在这里介绍一下横向滑动的GridView的使用。

首先是横向GridView的布局文件:

<HorizontalScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_below="@id/rela_jieduan"
    android:scrollbars="none">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="220dp">

        <GridView
            android:id="@+id/grid_jieduan"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="15dp"
            android:gravity="center">

        </GridView>
    </LinearLayout>
</HorizontalScrollView>
这种布局我查看了很多资料,GridView外部的linearlayout是必须的。至于原因,自己也没有研究透彻。然后就是gridview_item的xml文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="170dp"
    android:layout_height="220dp"
    android:background="#353535">

    <LinearLayout
        android:id="@+id/line_my_plan"
        android:layout_width="match_parent"
        android:layout_height="51dp"
        android:orientation="vertical">

        <TextView
            android:id=
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值