图像按钮出现在仿真器上的不同位置,而不是图形布局

时间:2013-07-30 08:26:57

标签: android button android-emulator

我正在使用图像按钮创建一个即时创建的应用程序,问题是图形布局显示的按钮位于与在模拟器上运行时不同的位置。我在plz帮助下面发布了我的代码。我提供了图形布局的Dropbox链接与模拟器上显示的内容。图像按钮是红色播放按钮,在左侧的图片上显示越界,而在模拟器上它完全放在红色播放按钮上。注意:我将按钮放在同一按钮的图像上。这是链接:https://dl.dropboxusercontent.com/u/8104708/Comparison.png

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@drawable/title_screen" >

    <ImageButton
        android:id="@+id/ibPlay"
        android:layout_width="400dp"
        android:layout_height="400dp"
        android:layout_marginLeft="100dp"
        android:layout_marginTop="310dp"
        android:background="@drawable/box_side_red"
        android:onClick="@drawable/box_side_red_pressed_shadow" />

</LinearLayout>

1 个答案:

答案 0 :(得分:0)

尝试此代码可能会正常工作

<?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/RelativeLayout1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/mango"
        android:orientation="vertical" >

        <ImageButton
            android:id="@+id/ibPlay"
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:background="@drawable/apple" />

    </RelativeLayout>