Android:为什么按钮在不同的API级别看起来不同?

时间:2012-09-25 10:43:50

标签: android android-layout

我的布局中有一个按钮,我使用了背景。但是这个按钮在不同的API级别上看起来有所不同。

在API 7(Android 2.1)

enter image description here

在API 15(Android 4.0.3)中

enter image description here

这是我的布局代码:

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

2 个答案:

答案 0 :(得分:2)

首先,您不应该为ImageView使用像素值,但这不是您的问题。我不知道为什么它看起来不同,但我猜测默认的填充/边距会根据API而改变(如果我错了请纠正我)。尝试在xml中设置按钮的填充和边距。

答案 1 :(得分:0)

无法正确管理可绘制文件夹。为hdpi,mdpi,ldpi或您想要支持的任何分辨率提供适当的背景图像。