左侧界面线性布局和表格布局结合。每一行是一个LinearLayout,每个LinearLayout包含一个TableLayout,每个TableLayout包含3个文本框,文本框的宽度由每个文本框的layout_weight按比例控制。
右侧界面插入一张图片,方法同上。使用ImageView,background属性会根据ImageView的大小进行伸缩。若把background改成src则会以原图大小显示
以下是activity_main.xml完整代码:
<?xml version="1.0" encoding="utf-8"?><android.support.constraint.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">
<android.support.v4.widget.DrawerLayout
android:layout_width=“match_parent”
android:layout_height=“match_parent”>
<RelativeLayout
android:layout_width=“match_parent”
android:layout_height=“match_parent”
android:background="#E6E6E6"
android:orientation=“vertical”>
<ImageView
android:id="@+id/iv"
android:layout_width=“70dp”
android:layout_height=“70dp”
android:layout_centerHorizontal=“true”
android:layout_marginTop=“40dp”
android:background="@drawable/head"/>
<LinearLayout
android:id="@+id/ll_number"
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:layout_below="@id/iv"
android:layout_centerVertical=“true”
android:layout_marginBottom=