splash_activity.xml 1009 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:id="@+id/fl"
  6. android:orientation="vertical">
  7. <ImageView
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. android:scaleType="centerCrop"
  11. android:src="@drawable/splash_bg_img"/>
  12. <TextView
  13. android:id="@+id/btn_join"
  14. android:layout_width="140dp"
  15. android:layout_height="40dp"
  16. android:layout_gravity="center|bottom"
  17. android:layout_marginBottom="@dimen/content_padding_20"
  18. android:background="@drawable/splash_bnt_img"
  19. android:gravity="center"
  20. android:paddingBottom="@dimen/content_padding_small"
  21. android:text="进 入 赚 钱"
  22. android:textColor="@color/white"
  23. android:textSize="@dimen/text_size_3" />
  24. </FrameLayout>