我正在尝试创建横向模式视图,但是当我将按钮放在 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" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:contentDescription="@string/v_ning_3"
android:src="@drawable/test_karta3" />
<Button
android:id="@+id/up3"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_marginRight="14dp"
android:background="@drawable/button_up"
android:text="" />
<Button
android:id="@+id/down3"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginRight="15dp"
android:layout_toLeftOf="@+id/up3"
android:background="@drawable/button_down" />
<Button
android:id="@+id/V3Flygel3"
style="?android:attr/buttonStyleSmall"
android:layout_width="10"
android:layout_height="wrap_content"
android:layout_below="@+id/down3"
android:layout_marginRight="59dp"
android:layout_toLeftOf="@+id/down3" />
</RelativeLayout>