-1

hdpiとmdpiでうまくいきますが、 ldpi で開こうとすると、レイアウトが不明なパディングによって乱れます(それが何であるかわかりません)

hdpi と mdpi の正しい画像 (表示方法)

http://i.stack.imgur.com/OXw9G.png

ldpi の間違ったイメージ

http://i.stack.imgur.com/wR3kw.png

コードは同じですが、ldpi モードで何が起こっているのかわかりません。

<TableLayout  
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:stretchColumns="*"
        android:background="@color/Grey">

        <TableRow>
            <FrameLayout 
                android:id="@+id/inboxLargeButton"
                android:layout_height="wrap_content"
                android:layout_width="0dp"
                android:layout_weight="1">

                <ImageView android:layout_width="wrap_content" 
                    android:layout_height="wrap_content" 
                    android:src="@drawable/inbox_normal" 
                    android:id="@+id/buttonWeddingDayCheatSheet"
                    android:layout_gravity="center_horizontal">
                </ImageView>
                <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">
                <ImageView android:layout_width="wrap_content" 
                    android:layout_height="wrap_content" 
                    android:src="@drawable/ourbox_normal" 
                    android:id="@+id/buttonShareFavoriteRecipe"
                    android:layout_gravity="center_horizontal">
                </ImageView>
                <TextView  
                    android:layout_width="fill_parent"  
                    android:layout_height="wrap_content"  
                    android:text="0296"  
                    android:layout_gravity="bottom"  
                    android:gravity="center"  
                    android:textColor="#fff"  
                    android:textSize="50dp" />
                </FrameLayout>
        </TableRow>
</TableLayout>

ldpi では、画像の次の行の行間に余分なパディングも表示されます。

何か助けはありますか?

4

1 に答える 1

0

以前のコメントによると:

画像が で視覚的に必要なサイズよりも大きくldpi、縮小される可能性は低くありません。デフォルトでは、ダウンスケーリング時にビューの境界は変更されません。s に設定android:adjustViewBounds="true"してみてくださいImageView

于 2013-07-19T21:14:40.853 に答える