0

我正在为我创建的应用程序使用图像按钮,问题是图形布局将按钮显示在与在模拟器上运行时不同的位置。我已经在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>
4

1 回答 1

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>
于 2013-07-30T09:07:07.590 回答