1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?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:background="@mipmap/bg_app"
- android:orientation="vertical">
- <include layout="@layout/title_layout" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="center_horizontal"
- android:layout_marginLeft="40dp"
- android:layout_marginTop="50dp"
- android:layout_marginRight="40dp"
- android:layout_marginBottom="120dp"
- android:orientation="horizontal">
- <LinearLayout
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:background="@color/color_efeeee"
- android:gravity="center_horizontal"
- android:orientation="vertical"
- android:paddingTop="30dp"
- android:paddingBottom="30dp">
- <ImageView
- android:layout_width="180dp"
- android:layout_height="180dp"
- android:src="@mipmap/ic_launcher" />
- <TextClock
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="15dp"
- android:text="fadsgadgadsg"
- android:textColor="@color/color_333333"
- android:textSize="@dimen/sp_25" />
- <TextView
- android:id="@+id/tv_date"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="15dp"
- android:text="2022-8-26"
- android:textColor="@color/color_333333"
- android:textSize="@dimen/sp_20" />
- </LinearLayout>
- <FrameLayout
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_marginLeft="40dp"
- android:layout_weight="2"
- android:background="@color/color_efeeee"
- android:orientation="horizontal"
- android:padding="50dp">
- <include layout="@layout/fragment_id_card_reg"/>
- </FrameLayout>
- </LinearLayout>
- </LinearLayout>
|