xml布局对我不起作用

时间:2013-12-07 02:06:46

标签: java android xml

我有很多信息要放在一个xml页面上。现在我得到了我想要的位置。但是,不是将所有数据都放在3个关键部分而不是相互碰撞,而是继续运行到下一个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:orientation="vertical" >

      <Button
          android:id="@+id/back_button"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_alignParentBottom="true"
         android:layout_centerHorizontal="true"
         android:text="@string/back" />

      <TextView
          android:id="@+id/makeup_title"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentLeft="true"
          android:layout_below="@+id/info_title"
          android:layout_marginTop="97dp"
          android:text="@string/part_section_2" />

      <TextView
          android:id="@+id/part_info"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentLeft="true"
          android:layout_below="@+id/info_title"
          android:layout_marginLeft="19dp"
          android:layout_marginTop="38dp"
          android:text="put text here for info" />

      <TextView
          android:id="@+id/part_safety"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignLeft="@+id/part_makeup"
          android:layout_below="@+id/safety_title"
          android:layout_marginTop="28dp"
          android:text="put text here for safety" />

      <TextView
          android:id="@+id/info_title"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentLeft="true"
          android:layout_alignParentTop="true"
          android:layout_marginTop="42dp"
          android:text="@string/part_section_1" />

      <TextView
          android:id="@+id/part_makeup"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignLeft="@+id/part_info"
          android:layout_below="@+id/makeup_title"
          android:layout_marginTop="33dp"
          android:text="put text here for makeup" />

      <TextView
          android:id="@+id/safety_title"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentLeft="true"
          android:layout_below="@+id/part_makeup"
          android:layout_marginTop="48dp"
          android:text="@string/part_section_3" />

      <TextView
          android:id="@+id/part_title"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentTop="true"
          android:layout_centerHorizontal="true"
          android:layout_marginTop="16dp"
          android:textColor="#b70000"
          android:textSize="16sp"
          android:text="put text here for part title" />

</RelativeLayout>

ScrollView会更好吗?以及如何将其从此切换到ScrollView。 enter image description here

皮肤是480x800 密度高(240)

字符串文件 - http://pastie.org/8534713

1 个答案:

答案 0 :(得分:1)

更改为ScrollView(source):

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <!-- your Button and TextView widgets -->

    </RelativeLayout>
</ScrollView>

修改

除此之外,尝试将后退按钮XML更改为:

<Button
     android:id="@+id/back_button"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_below="@+id/part_safety"
     android:layout_centerHorizontal="true"
     android:layout_marginTop="50dp"
     android:text="@string/back" />

问题是android:layout_alignParentBottom="true"。底部最终没有像以前那样走到页面底部。 ScrollView缩减了布局的底部。