您的位置:首页 > 其它

GridView添加网格线

2016-05-05 12:09 302 查看
<GridView

        android:background="@color/gray"
        android:columnWidth="60dp" 
        android:numColumns="5"
        android:listSelector="@null" 
        android:verticalSpacing="1.0px"
 纵向的横线
        android:horizontalSpacing="1.0px"
 横向的纵线
        android:soundEffectsEnabled="true"
        android:smoothScrollbar="true"  
        android:stretchMode="columnWidth" 
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_above="@+id/llayout2"
        android:layout_below="@+id/llayout1"/>

//Item 

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/white"
>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: