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