为android设计网格布局

时间:2014-09-12 05:15:14

标签: android listview gridview

对于我设计了自定义gridview的项目..现在我想以特定的形式

你可以看到行是交替的。因为这是动态的,我会有" x"行数。关于我如何继续这方面的任何建议?我已经完成了网格视图b4但是所有方块都是一致的。行具有特定大小时该怎么办?

之间可以使用列表视图吗?我每格/方格有2个项目来显示..

提前致谢..

我的网格布局

 <FrameLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<GridView
    android:id="@+id/grid_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:verticalSpacing="0dp"
    android:horizontalSpacing="0dp"
    android:stretchMode="columnWidth"
    android:numColumns="auto_fit" />

我的网格视图项

 <?xml version="1.0" encoding="utf-8"?>
 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ffffff"
android:padding="1dp">
<org.qui.osamp.SquareImageView
    android:id="@+id/picture"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:scaleType="centerCrop"
    />
<RelativeLayout
    android:id="@+id/text"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom"
    android:textColor="@android:color/white"
    android:background="#55000000"
    >

    <ImageView
        android:id="@+id/IVPlusButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:src="@drawable/plusbutton3" />

    </RelativeLayout>

0 个答案:

没有答案