我的布局中有一个按钮,我使用了背景。但是这个按钮在不同的API级别上看起来有所不同。
在API 7(Android 2.1)
中
在API 15(Android 4.0.3)中
这是我的布局代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="110px"
android:layout_height="134px"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="10dp"
android:background="@drawable/imageview_bg" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toLeftOf="@+id/imageView1"
android:text="title" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView1"
android:layout_toLeftOf="@+id/imageView1"
android:text="price" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/imageView1"
android:layout_alignParentLeft="true"
android:background="@drawable/button_small_green_bg"
android:gravity="center"
android:text="Button"
android:textColor="#ffffff"
android:textSize="13sp" />
</RelativeLayout>
答案 0 :(得分:2)
首先,您不应该为ImageView使用像素值,但这不是您的问题。我不知道为什么它看起来不同,但我猜测默认的填充/边距会根据API而改变(如果我错了请纠正我)。尝试在xml中设置按钮的填充和边距。
答案 1 :(得分:0)
无法正确管理可绘制文件夹。为hdpi,mdpi,ldpi或您想要支持的任何分辨率提供适当的背景图像。