3

グリッド レイアウトに問題があります。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
     xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:id="@+id/frag_books_grid_view_layout"
     android:orientation="vertical">
        <GridView
            android:padding="0dp"
            android:cacheColorHint="@color/bg_default"
            android:listSelector="@drawable/list_selector_background"
            android:id="@+id/frag_books_grid_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:stretchMode="spacingWidth"
            android:scrollbars="none"/>
</LinearLayout>

単品:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal" 
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <ListView
        android:cacheColorHint="@color/bg_default"
        android:scrollbars="none"
        android:listSelector="@drawable/list_selector_background"
        android:layout_gravity="center_vertical|left"
        android:gravity="center_vertical|left"
        android:paddingLeft="15dp"
        android:paddingRight="15dp" 
        android:id="@+id/frag_book_list_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:verticalSpacing="5dp"/>
</LinearLayout>    

問題は、単一アイテムの左右のパディングがないことです。そして、アイテムが選択されたとき、それはひどく見えます: http://i.imgur.com/rirNP.png

修正を手伝ってください。

4

2 に答える 2

18

それを試してみてください

 <?xml version="1.0" encoding="utf-8"?>
    <GridView xmlns:android="http://schemas.android.com/apk/res/android" 
        android:id="@+id/menu_category"
        android:layout_width="fill_parent" 
        android:layout_height="fill_parent"
        android:columnWidth="90dp"
        android:numColumns="auto_fit"
        android:verticalSpacing="10dp"
        android:horizontalSpacing="10dp"
        android:stretchMode="columnWidth"
        android:gravity="center"
    />

詳細については

http://developer.android.com/guide/topics/ui/layout/gridview.html

于 2012-09-03T11:55:34.740 に答える
5

これは3列に最適です..

  <GridView
        android:id="@+id/gridview_Gallery"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:columnWidth="65dp"
        android:gravity="center"
        android:horizontalSpacing="6dp"
        android:listSelector="#00000000"
        android:numColumns="3"
        android:scrollbars="none"
        android:stretchMode="columnWidth"
        android:verticalSpacing="-1dp" />
于 2012-09-03T11:59:55.527 に答える