1 layout_weight属性
- 使用layout_weight为控件所占父控件空间的比例
- 在水平三个空间中,空间所占的比例由三个空间的weight值之和为分母,单个空间weight为分子进行比例的计算
2 布局文件
- 拖入的布局
-
布局效果
-
xml布局文件
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#BBB5BC"
android:orientation="vertical"
app:layout_constraintCircleRadius="3dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:orientation="horizontal">
<ImageButton
android:id="@+id/name_image"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.3"
app:srcCompat="@android:drawable/btn_star_big_on" />
<TextView
android:id="@+id/name_text"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.7"
android:text="@string/name"
android:textSize="24sp" />
<EditText
android:id="@+id/name_input_text"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="3"
android:ems="10"
android:hint="@string/input_name"
android:inputType="textPersonName"
android:textSize="24sp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:orientation="horizontal">
<ImageView
android:id="@+id/phonr_image"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.3"
app:srcCompat="@android:drawable/stat_sys_phone_call" />
<TextView
android:id="@+id/phone_text"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.7"
android:text="@string/phone"
android:textSize="24sp" />
<EditText
android:id="@+id/phone_input_text"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="3"
android:ems="10"
android:hint="@string/input_phone"
android:inputType="phone"
android:textSize="24sp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:orientation="horizontal">
<ImageView
android:id="@+id/imageView3"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.3"
app:srcCompat="@android:drawable/ic_dialog_email" />
<TextView
android:id="@+id/email_text"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.7"
android:text="@string/email"
android:textSize="18sp" />
<EditText
android:id="@+id/email_input_text"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="3"
android:ems="10"
android:hint="@string/input_email"
android:inputType="textEmailAddress"
android:textSize="24sp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:orientation="vertical">
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RadioButton
android:id="@+id/radio_male"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:checked="true"
android:text="@string/male" />
<RadioButton
android:id="@+id/radio_female"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/female" />
</RadioGroup>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:orientation="vertical">
<CheckBox
android:id="@+id/dance_check"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:checked="true"
android:text="@string/dance" />
<CheckBox
android:id="@+id/sing_check"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/sing" />
<CheckBox
android:id="@+id/read_check"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/phone" />
</LinearLayout>
<Button
android:id="@+id/confrim"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:text="@string/button_confirm" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
- 字符资源
<resources>
<string name="app_name">CH05DemoWidgets</string>
<string name="name">姓名</string>
<string name="phone">电话</string>
<string name="email">电子邮件</string>
<string name="input_name">请输入姓名</string>
<string name="input_phone">请输入电话</string>
<string name="input_email">请输入电子邮件</string>
<string name="male">男</string>
<string name="female">女</string>
<string name="dance">跳舞</string>
<string name="sing">唱歌</string>
<string name="read">阅读</string>
<string name="button_confirm">确认</string>
</resources>