10未満のAndroidAPIでパディングなしのGridViewが必要です。私のレイアウト:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context=".MainActivity" >
<GridView
android:id="@+id/grid"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:alwaysDrawnWithCache="true"
android:background="@color/gridview_background"
android:clipChildren="true"
android:horizontalSpacing="1dp"
android:numColumns="6"
android:verticalSpacing="1dp" />
結果:
赤い矢印はパディングに表示されます。Android<3.0のみです必要な結果
パディングなし。
PSandroid3.0のまったく同じコードにはパディングがありません。何故ですか?