我正在尝试创建一个在两列中排列的几个文本框的活动。我两列的宽度占屏幕的 30%,另一列占屏幕的 70%。这是我的 XML 代码:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="50dp"
android:layout_marginTop="3dp"
android:layout_weight="1"
android:orientation="horizontal" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginRight="2dp"
android:layout_weight="0.3"
android:background="@drawable/gradient_bg_hover"
android:gravity="center_vertical" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="naming is fun fun is naming" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="50dp"
android:layout_weight="0.7"
android:background="@drawable/gradient_bg_hover"
android:gravity="center_vertical" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hi" />
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="50dp"
android:layout_marginTop="3dp"
android:layout_weight="1"
android:orientation="horizontal" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginRight="2dp"
android:layout_weight="0.3"
android:gravity="center_vertical"
android:background="@drawable/gradient_bg_right" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hi" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="50dp"
android:layout_weight="0.7"
android:gravity="center_vertical"
android:background="@drawable/gradient_bg_right" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hi" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
</ScrollView>
问题是带有文本“hi”的列占据了屏幕的 30%,但是像“hello”这样的词占据了更多的空间并且格式被扭曲了。
无论文本的大小如何,它都应该占据屏幕的最大 30%。任何帮助表示赞赏。