2017-04-02 33 views

回答

0

得到了解決,

需要使用GridView控件:

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    tools:context="app.appmax.fest1.Dialogs.CustomGridView.MenuHome"> 

    <GridView 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:columnWidth="100dp" 
     android:layout_marginLeft="8dp" 
     android:layout_marginTop="8dp" 
     android:stretchMode="columnWidth" 
     android:id="@+id/gridview1" 
     android:numColumns="auto_fit" 
     > 


    </GridView> 


</RelativeLayout> 
相關問題