ppamorim

Untitled

Nov 7th, 2014
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:app="http://schemas.android.com/apk/res-auto"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@color/black">
  6.  
  7. <ImageView
  8. android:id="@+id/splash_logo"
  9. android:layout_width="200dp"
  10. android:layout_height="200dp"
  11. android:src="@drawable/logo_big"
  12. android:layout_centerInParent="true"/>
  13.  
  14. <com.github.leonardoxh.customfont.FontText
  15. android:id="@+id/text_welcome"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:layout_below="@+id/splash_logo"
  19. android:layout_centerHorizontal="true"
  20. android:gravity="center_horizontal"
  21. android:padding="16dp"
  22. android:visibility="gone"
  23. android:textColor="@color/white"
  24. android:textSize="24sp"
  25. android:text="@string/welcome"
  26. app:font="squaredance10"/>
  27.  
  28. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment