我需要帮助你。我不知道为什么这段代码不能正确运行。我希望第一个 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>