login_actvity.xml 854 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@color/theme"
  6. android:orientation="vertical">
  7. <ImageView
  8. android:id="@+id/img_login"
  9. android:layout_width="50dp"
  10. android:layout_height="50dp"
  11. android:layout_centerInParent="true"
  12. android:src="@drawable/wx_logo"/>
  13. <TextView
  14. android:layout_width="wrap_content"
  15. android:layout_height="wrap_content"
  16. android:layout_below="@id/img_login"
  17. android:layout_centerHorizontal="true"
  18. android:text="微信登录"
  19. android:textColor="@color/white"
  20. android:textSize="16sp"/>
  21. </RelativeLayout>