我已经尝试了几种不同的权重方法,但显然对于如何获得我在这里的目标存在一些明显的误解。简单地说,我想要做的是让 ImageView 在宽度上占据屏幕的 1/3,而让 textViews 的布局在宽度上占据屏幕的 2/3 的其余部分。
然而,当我尝试操作它时,最终得到的是 ImageView 很小并且几乎没有占用它应该的空间。我整个早上都在搞乱布局。
下面的答案让我想到了在这种情况下发生的事情:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="3">
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/skeleton"
android:layout_weight="1"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_weight="2">
<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10" />
<EditText
android:id="@+id/editText2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10" />
</LinearLayout>
</LinearLayout>
</LinearLayout>