|
|
@ -16,17 +16,23 @@ |
|
|
|
layout="@layout/layout_toolbar" |
|
|
|
layout="@layout/layout_toolbar" |
|
|
|
binding:toolbarViewModel="@{viewModel.toolbarViewModel}" /> |
|
|
|
binding:toolbarViewModel="@{viewModel.toolbarViewModel}" /> |
|
|
|
|
|
|
|
|
|
|
|
<ImageView |
|
|
|
<!-- app logo --> |
|
|
|
|
|
|
|
<LinearLayout |
|
|
|
|
|
|
|
android:gravity="bottom|center" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="0dp" |
|
|
|
android:layout_height="0dp" |
|
|
|
android:layout_weight="2" |
|
|
|
android:layout_weight="1"> |
|
|
|
android:padding="@dimen/dp_30" |
|
|
|
<ImageView |
|
|
|
|
|
|
|
android:layout_width="@dimen/dp_96" |
|
|
|
|
|
|
|
android:layout_height="@dimen/dp_96" |
|
|
|
|
|
|
|
android:layout_centerInParent="true" |
|
|
|
android:src="@drawable/icon_app" /> |
|
|
|
android:src="@drawable/icon_app" /> |
|
|
|
|
|
|
|
</LinearLayout> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- app名字 版本号 --> |
|
|
|
<LinearLayout |
|
|
|
<LinearLayout |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="0dp" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_weight="3" |
|
|
|
|
|
|
|
android:gravity="center|top" |
|
|
|
android:gravity="center|top" |
|
|
|
android:orientation="vertical"> |
|
|
|
android:orientation="vertical"> |
|
|
|
|
|
|
|
|
|
|
@ -35,39 +41,70 @@ |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:text="@string/app_name" |
|
|
|
android:text="@string/app_name" |
|
|
|
android:textColor="@color/black" |
|
|
|
android:textColor="@color/black" |
|
|
|
android:textSize="24dp" |
|
|
|
android:textSize="@dimen/dp_26" |
|
|
|
|
|
|
|
android:letterSpacing="0.1" |
|
|
|
android:textStyle="bold" /> |
|
|
|
android:textStyle="bold" /> |
|
|
|
|
|
|
|
|
|
|
|
<TextView |
|
|
|
<TextView |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:padding="5dp" |
|
|
|
android:letterSpacing="0.1" |
|
|
|
android:text="@string/app_version" |
|
|
|
android:text="@string/app_version" |
|
|
|
android:textColor="@color/black" |
|
|
|
android:textColor="@color/black40" |
|
|
|
android:textSize="18dp" /> |
|
|
|
android:textSize="@dimen/dp_12" /> |
|
|
|
</LinearLayout> |
|
|
|
</LinearLayout> |
|
|
|
|
|
|
|
<!-- 用户协议、隐私政策、软件更新 --> |
|
|
|
|
|
|
|
<LinearLayout |
|
|
|
|
|
|
|
android:layout_width="match_parent" |
|
|
|
|
|
|
|
android:layout_height="0dp" |
|
|
|
|
|
|
|
android:layout_weight="3" |
|
|
|
|
|
|
|
android:gravity="center|bottom" |
|
|
|
|
|
|
|
android:orientation="vertical"> |
|
|
|
|
|
|
|
<TextView |
|
|
|
|
|
|
|
android:padding="@dimen/dp_5" |
|
|
|
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
|
|
|
android:text="@{viewModel.document01}" |
|
|
|
|
|
|
|
binding:onClickCommand="@{viewModel.document01ClickCommand}" |
|
|
|
|
|
|
|
android:textColor="@color/black40" |
|
|
|
|
|
|
|
android:textSize="@dimen/dp_10" /> |
|
|
|
|
|
|
|
<TextView |
|
|
|
|
|
|
|
android:padding="@dimen/dp_5" |
|
|
|
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
|
|
|
android:text="@{viewModel.document02}" |
|
|
|
|
|
|
|
binding:onClickCommand="@{viewModel.document02ClickCommand}" |
|
|
|
|
|
|
|
android:textColor="#576B95" |
|
|
|
|
|
|
|
android:textSize="@dimen/dp_12" /> |
|
|
|
|
|
|
|
</LinearLayout> |
|
|
|
|
|
|
|
<!-- 底部说明 --> |
|
|
|
<LinearLayout |
|
|
|
<LinearLayout |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:gravity="center|bottom" |
|
|
|
android:gravity="center|bottom" |
|
|
|
android:orientation="vertical"> |
|
|
|
android:orientation="vertical"> |
|
|
|
|
|
|
|
|
|
|
|
<TextView |
|
|
|
<TextView |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginBottom="1dp" |
|
|
|
android:layout_marginBottom="1dp" |
|
|
|
android:text="©2023-2023 康来生物科技有限公司 版权所有 — All Rights Reserved" |
|
|
|
android:text="@{viewModel.tit01}" |
|
|
|
|
|
|
|
android:textColor="@color/black40" |
|
|
|
|
|
|
|
android:textSize="@dimen/dp_10" /> |
|
|
|
|
|
|
|
<TextView |
|
|
|
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
|
|
|
android:layout_marginBottom="1dp" |
|
|
|
|
|
|
|
android:text="@{viewModel.tit02}" |
|
|
|
android:textColor="@color/black40" |
|
|
|
android:textColor="@color/black40" |
|
|
|
android:textSize="10dp" /> |
|
|
|
android:textSize="@dimen/dp_10" /> |
|
|
|
|
|
|
|
|
|
|
|
<TextView |
|
|
|
<TextView |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_margin="6dp" |
|
|
|
android:layout_margin="6dp" |
|
|
|
android:text="大家的支持是我们工作的动力" |
|
|
|
android:text="@{viewModel.tit03}" |
|
|
|
android:textColor="@color/black40" |
|
|
|
android:textColor="@color/black40" |
|
|
|
android:textSize="10dp" /> |
|
|
|
android:textSize="@dimen/dp_10" /> |
|
|
|
</LinearLayout> |
|
|
|
</LinearLayout> |
|
|
|
</LinearLayout> |
|
|
|
</LinearLayout> |
|
|
|
</layout> |
|
|
|
</layout> |
|
|
|