在我的Eclipse圖形佈局中,EditView,TextView和按鈕是我希望它們成爲的地方。但是當我在手機上運行它們時,它們會移動到不同的位置。有人能幫我把他們留在我想要的地方嗎?當我在我的手機上運行應用程序時的佈局更改
這裏是我的代碼:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/backgroundhdpi" >
<EditText
android:id="@+id/bill"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="100dp"
android:ems="10"
android:inputType="phone"
android:text="Enter Your Bill"
android:textSize="18dip" />
<Button
android:id="@+id/calculateTip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/bill"
android:layout_alignParentBottom="true"
android:layout_marginBottom="40dp"
android:layout_marginLeft="15dp"
android:text="Calculate" />
<TextView
android:id="@+id/tipOwed"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/bill"
android:layout_centerHorizontal="true"
android:layout_marginBottom="123dp"
android:scrollHorizontally="false"
android:text="Time to Tip!"
android:textColor="#2c6f37"
android:textSize="35dip"
android:textStyle="bold" />
</RelativeLayout>
你需要發佈你的佈局代碼。另外,如果您在佈局編輯器中使用不同的設備主題進行設計,如果您的手機具有不同的屏幕尺寸/密度,則在手機上看起來會有所不同。 – dennisdrew
剛剛添加我的代碼 – user1657178
也許你想要它看起來像什麼樣的截圖和它實際的樣子。 – dennisdrew