0

水平方向の線形レイアウトに xml コードを使用しています。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="60dip"
    android:orientation="horizontal"
    android:paddingLeft="5dip"
    android:paddingRight="5dip"
    android:layout_alignParentBottom="true"
    android:background="@drawable/back1"
    >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="60dip"
        android:clickable="true"
        android:contentDescription="@string/app_name"
        android:src="@drawable/ca_18"
        android:adjustViewBounds="true"/>
</LinearLayout>

ImageView には上下にパディングがあります。パディングを削除するにはどうすればよいですか?

4

1 に答える 1

2

layout_height および layout_width 属性をハードコーディングしないでください。お使いのデバイスでは問題なく表示される場合があります。しかし、別の人には醜く見えるかもしれません。

于 2012-08-26T13:56:49.787 に答える