1

我需要帮助你。我不知道为什么这段代码不能正确运行。我希望第一个 textview 和 edittext 有 50% 的空间,第二个 textview 和 edittext 有 50% 的其他空间,而它只显示一个空布局。请帮帮我谢谢

<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:weightSum="1.0"
    >
<TextView
      android:layout_height="wrap_content" 
      android:layout_weight="0.10"
      android:layout_width="0dip"
      android:id="@+id/lytner_card_question_text"
      android:layout_alignParentRight="true"
      android:gravity="center"
      android:textSize="20dp"
   />
<ScrollView android:id="@+id/myparentScrollview"
            android:layout_height="100dp"
            android:layout_weight="0.40"
            android:layout_width="0dip"
            android:layout_toLeftOf="@+id/lytner_card_question_text"

            >

<EditText
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:id="@+id/lytner_card_question_etext"
    android:minHeight="100dp"    
    />

</ScrollView>
<TextView 
    android:layout_height="wrap_content"
     android:layout_weight="0.10"
    android:layout_width="0dip"
    android:id="@+id/lytner_card_answer_text"
    android:layout_toLeftOf="@+id/myparentScrollview"
    android:gravity="center"
    android:textSize="20dp"

  />
<ScrollView android:id="@+id/myparentScrollview1"
            android:layout_height="100dp"
            android:layout_weight="0.40"
            android:layout_width="0dip"
            android:layout_toLeftOf="@+id/lytner_card_answer_text"

       >
<EditText 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:id="@+id/lytner_card_answer_etext"
    android:minHeight="100dp"
   />
</ScrollView>

</RelativeLayout>
4

3 回答 3

3

以下代码为您提供了两个 LinearLayouts 作为容器,每个容器的高度为屏幕的一半:

<LinearLayout 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"
    android:orientation="vertical" >

    <LinearLayout 
        android:id="@+id/container1"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"></LinearLayout>

    <LinearLayout
        android:id="@+id/container2"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1">
    </LinearLayout>

</LinearLayout>
于 2012-10-04T08:36:13.877 回答
1

将权重总和添加到相对布局是没有意义的。它仅适用于线性布局。将您的相对布局更改为线性布局,然后重试。

于 2012-10-04T08:33:51.707 回答
0

相对布局权重不起作用中,将布局更改为线性,然后尝试权重。

于 2012-10-04T08:34:20.300 回答