我使用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的顶部和底部都有填充物。如何删除填充?
答案 0 :(得分:2)
避免对layout_height和layout_width属性进行硬编码。这可能在您的设备上看起来很好。但可能看起来很丑。