activity_member_auth.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout
  3. android:id="@+id/fl_root"
  4. xmlns:android="http://schemas.android.com/apk/res/android"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. xmlns:app="http://schemas.android.com/apk/res-auto">
  8. <ImageView
  9. android:id="@+id/iv_banner"
  10. android:layout_width="@dimen/convert_480px"
  11. android:layout_height="match_parent"
  12. android:background="#666"
  13. android:scaleType="centerCrop"
  14. android:src="@drawable/guide_bg"/>
  15. <!-- <View-->
  16. <!-- android:layout_width="@dimen/convert_320px"-->
  17. <!-- android:layout_height="@dimen/convert_130px"-->
  18. <!-- android:background="@drawable/ic_guide_logo"-->
  19. <!-- android:layout_marginStart="@dimen/convert_65px"-->
  20. <!-- android:layout_gravity="center_vertical"/>-->
  21. <FrameLayout
  22. android:id="@+id/fl_container"
  23. android:layout_width="match_parent"
  24. android:layout_height="match_parent"
  25. android:layout_marginStart="@dimen/convert_480px"/>
  26. <TextView
  27. android:id="@+id/tv_skip"
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:layout_gravity="end|top"
  31. android:layout_margin="@dimen/convert_20px"
  32. android:background="@drawable/bg_skip_text"
  33. android:text="HOME >>"
  34. android:paddingHorizontal="@dimen/convert_62px"
  35. android:gravity="center"
  36. android:textSize="@dimen/convert_40px"
  37. android:paddingVertical="@dimen/convert_22px"
  38. android:textColor="@color/auth_home"/>
  39. </FrameLayout>