| 123456789101112131415161718192021222324 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/theme"
- android:orientation="vertical">
- <ImageView
- android:id="@+id/img_login"
- android:layout_width="50dp"
- android:layout_height="50dp"
- android:layout_centerInParent="true"
- android:src="@drawable/wx_logo"/>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@id/img_login"
- android:layout_centerHorizontal="true"
- android:text="微信登录"
- android:textColor="@color/white"
- android:textSize="16sp"/>
- </RelativeLayout>
|