我在手机上运行应用程序时的布局更改

时间:2012-10-07 01:58:41

标签: android android-layout button textview android-edittext

在我的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>

1 个答案:

答案 0 :(得分:0)

如果我可能会问,您尝试运行代码的手机类型/单位是什么?用户点的视图上的程序布局有时取决于他们使用的手机屏幕。

示例:

您使用Galaxy S2模拟器运行应用程序,并尝试在Galaxy Y中运行它。由于两者的屏幕分辨率不同,您可能会注意到布局可能占用的空间之间的差异。 / p>

另外,您是否将布局中使用的图像放在单个可绘制文件夹中?例如,drawable-hdpi? 将布局稍后使用的图像放置在不同的可绘制文件夹中可能会直接影响图像的大小或分辨率。