-1

图像不正确

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>  
4

2 回答 2

0

一切看起来都是正确的。尝试清理项目并再次运行。

如果这不起作用,请尝试将高度View设置为固定高度。match_parentFrameLayout

于 2013-07-19T19:38:49.610 回答
0

现在解决了。刚刚将收件箱列的FrameLayout属性更改为.android:layout_heightfill_parent

于 2013-07-20T05:49:35.973 回答