我正在尝试创建支持所有屏幕的布局
所以,我添加了像
这样的布局文件夹布局小
布局大
布局XLARGE
布局w600dp
我编辑了所有这些内容是合适的
但是当我在HTC Sensation 2.1中运行应用程序时,它们似乎不在正确的位置
这是布局代码
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/mainlayout"
tools:context=".SebhaActivity"
android:background="#4b6702"
>
<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/sebha_bg"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:scaleType="fitCenter" />
<TextView
android:id="@+id/zakr"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_marginBottom="58dp"
android:gravity="center"
android:text="@string/first_zekr"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#FFFFFF"
android:textSize="25dp" />
<Button
android:id="@+id/azkar"
android:layout_width="100dp"
android:layout_height="40dp"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:text="@string/Azkar" />
<Button
android:id="@+id/karaza"
android:layout_width="135dp"
android:layout_height="135dp"
android:layout_above="@+id/zakr"
android:layout_centerHorizontal="true"
android:layout_marginBottom="74dp"
android:background="@drawable/button_green"
android:text="0"
android:textColor="#FFFFFF"
android:textSize="38dp"
android:scaleType="fitCenter" />
</RelativeLayout>
模拟器将其显示为我想要的内容..
但我的手机显示如下......
任何帮助?
答案 0 :(得分:0)
如果您希望子视图显示在RelativeLayout中的另一个子视图下方,则应使用特定约束来实现该效果。因此,如果你有一个id为first_element且想要下面的东西,你会这样做:
机器人:layout_below = “@ ID / first_element”
如果你想在底部放一个元素,你可以这样做:
机器人:ID = “@ + ID / bottom_element”
android:layout_alignParentBottom =“true”
如果你想要一个上面的元素:
android:layout_above =“@ id / bottom_element”
现在你把一件事放在中心,但你设定的其他东西有一定的底部边距和尺寸等等。但是当屏幕尺寸发生变化时,您的元素不再像在不同尺寸的屏幕上那样排列。解决方案是使用专门指定您希望彼此放置事物的约束。
你可以在这里看到一个教程:
http://developer.android.com/guide/topics/ui/layout/relative.html