taomenggo init

This commit is contained in:
guozhen
2024-08-06 10:30:15 +08:00
committed by xuhuixiang
parent 3e7fd07f4f
commit c929efd05e
3007 changed files with 229844 additions and 77 deletions

View File

@@ -0,0 +1,66 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:orientation="vertical"
android:id="@+id/big_bg"
tools:context=".welcome.WelcomeActivity">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:layout_weight="3">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/app_yunxin_icon"
android:layout_width="119.7dp"
android:layout_height="164.7dp"
android:src="@drawable/kefu_loading1"
android:layout_centerHorizontal="true"
android:scaleType="fitXY"
android:layout_marginTop="@dimen/dp_200"
android:visibility="visible"
/>
</RelativeLayout>
<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="6"
android:paddingBottom="@dimen/dp_64"
android:gravity="bottom"
android:visibility="invisible"
android:id="@+id/bottom_ly"
android:orientation="vertical">
<androidx.appcompat.widget.AppCompatButton
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@mipmap/start_login1"
android:text="@string/login_txt"
android:layout_marginLeft="@dimen/dp_20"
android:layout_marginRight="@dimen/dp_20"
android:gravity="center"
android:id="@+id/login_bt"
android:textColor="@color/color_white"
android:textSize="16sp"
/>
<androidx.appcompat.widget.AppCompatButton
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/reg_txt"
android:layout_marginLeft="@dimen/dp_20"
android:layout_marginRight="@dimen/dp_20"
android:gravity="center"
android:id="@+id/reg_bt"
android:layout_marginTop="@dimen/dp_10"
android:background="@mipmap/start_reg1"
android:textColor="@color/white"
android:textSize="16sp"
/>
</androidx.appcompat.widget.LinearLayoutCompat>
</LinearLayout>