| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout 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:id="@+id/main"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:context=".view.activity.LoginActivity">
- <ImageView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@mipmap/main_bg" />
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/rv_type"
- style="@style/CommonRecyclerView"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:orientation="horizontal" />
- <TextView
- android:id="@+id/main_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_marginLeft="40dp"
- android:layout_marginTop="100dp"
- android:layout_marginRight="40dp"
- android:gravity="center"
- android:text="@string/loto"
- android:textColor="@color/white"
- android:textSize="46sp" />
- <com.grkj.iscs_mars.view.widget.CommonBtn
- android:id="@+id/cb_motor"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_above="@+id/login_tip"
- android:layout_centerHorizontal="true"
- android:layout_marginVertical="@dimen/common_spacing"
- android:visibility="gone"
- app:btn_bg="@drawable/common_btn_blue_bg"
- app:btn_name="@string/motor_map" />
- <TextView
- android:id="@+id/login_tip"
- style="@style/CommonTextView"
- android:layout_above="@+id/copyright"
- android:layout_centerHorizontal="true"
- android:layout_marginBottom="40dp"
- android:paddingLeft="20dp"
- android:paddingRight="20dp"
- android:text="@string/login_method_tip"
- android:textSize="20sp" />
- <TextView
- android:id="@+id/copyright"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:layout_centerHorizontal="true"
- android:layout_marginBottom="@dimen/page_padding"
- android:text="@string/copyright"
- android:textColor="@color/white"
- android:textSize="18sp" />
- <TextView
- android:id="@+id/tv_version"
- style="@style/CommonTextView"
- android:layout_alignParentRight="true"
- android:padding="@dimen/page_padding"
- android:textSize="14sp" />
- </RelativeLayout>
|