按钮边缘被剪裁

时间:2013-07-02 08:37:27

标签: android xml imagebutton

这是我的应用程序界面的XML代码:

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="5"
        android:background="@drawable/gradient"
        android:gravity="fill_horizontal"
        android:paddingBottom="@dimen/activity_vertical_margin"
        android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingRight="@dimen/activity_horizontal_margin"
        android:paddingTop="@dimen/activity_vertical_margin"
        tools:context=".PNRActivity" >

        <EditText
            android:id="@+id/pnr_num"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:ems="10"
            android:gravity="top|center"
            android:hint="@string/pnr_number"
            android:inputType="number"
            android:maxLength="10" >

            <requestFocus />
        </EditText>

        <LinearLayout
            android:id="@+id/linearLayout1"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:paddingTop="50dip" >

            <Button
                android:id="@+id/btnStatus"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:background="@drawable/btn_pnr"
                android:text="@string/btnGetStatus" />

            <TextView
                android:id="@+id/centerPoint"
                android:layout_width="5dip"
                android:layout_height="wrap_content"
                android:paddingTop="15dip"
                android:text="" />

            <Button
                android:id="@+id/btnClear"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:background="@drawable/btn_pnr"
                android:text="@string/btnClear" />
        </LinearLayout>

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@+id/linearLayout1"
            android:layout_below="@+id/linearLayout1"
            android:layout_marginLeft="42dp"
            android:layout_marginTop="60dp"
            android:text="@string/btnClear"
            android:textAppearance="?android:attr/textAppearanceLarge" />

    </RelativeLayout>

它适用于大多数设备,但在少数设备中按钮被剪裁即可。

那么我必须提到它是一个运行姜饼的物理设备(Galaxy S II)。这是我的代码的问题吗?当我的目标设置为4. *时,我无法模拟2.2.3。有办法改变吗?

enter image description here

0 个答案:

没有答案