intro.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. ~ Copyright (c) 2015. Ncomz. All Rights Reserved
  4. -->
  5. <LinearLayout
  6. xmlns:android="http://schemas.android.com/apk/res/android"
  7. android:layout_width="match_parent"
  8. android:layout_height="match_parent"
  9. android:background="@drawable/img_intro_bg"
  10. android:fillViewport="true"
  11. android:fitsSystemWindows="true"
  12. android:orientation="vertical">
  13. <RelativeLayout
  14. android:layout_width="match_parent"
  15. android:layout_height="match_parent">
  16. <ImageView
  17. android:id="@+id/ivLogo"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:layout_centerInParent="true"
  21. android:background="@drawable/img_intro"
  22. />
  23. <TextView
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. android:layout_alignParentBottom="true"
  27. android:layout_centerHorizontal="true"
  28. android:layout_marginBottom="35dp"
  29. android:includeFontPadding="false"
  30. android:lineSpacingExtra="4dp"
  31. android:text="@string/layout_intro_01"
  32. android:textColor="@color/color_text_03"
  33. android:textSize="@dimen/size_font_06"/>
  34. </RelativeLayout>
  35. </LinearLayout>