0

我的布局中有一个按钮,我为它使用了背景。但是这个按钮在不同的 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>
4

2 回答 2

2

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

于 2012-09-25T10:47:35.693 回答
0

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

于 2012-09-25T10:47:47.853 回答