图像不正确
http://i.stack.imgur.com/EEIBW.png
因为这应该以相等的高度和宽度显示每个图像,但“发件箱”图像小于右侧图像。这里有什么问题?smae 代码在 mdpi 和 hdpi 中运行良好
<TableLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:stretchColumns="1"
android:background="@color/Grey">
<TableRow>
<FrameLayout
android:id="@+id/inboxLargeButton"
android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_weight="1">
<View android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/inbox_normal"
android:id="@+id/buttonWeddingDayCheatSheet"
android:layout_gravity="bottom"
android:adjustViewBounds="true"
>
</View>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="2631"
android:layout_gravity="bottom"
android:gravity="center"
android:textColor="#fff"
android:textSize="50dp" />
</FrameLayout>
<FrameLayout
android:id="@+id/outboxLargeButton"
android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_weight="1">
<View android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/ourbox_normal"
android:id="@+id/buttonWddingDayCheatSheet"
android:layout_gravity="bottom"
android:adjustViewBounds="true"
>
</View>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="0432"
android:layout_gravity="bottom"
android:gravity="center"
android:textColor="#fff"
android:textSize="50dp" />
</FrameLayout>
</TableRow>
</TableLayout>