Guest User

Untitled

a guest
Nov 24th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. <LinearLayout
  2. android:orientation="vertical"
  3. android:layout_centerInParent="true"
  4. android:layout_width="wrap_content"
  5. android:layout_height="wrap_content"
  6. >
  7. <ImageView
  8. android:src="@drawable/ic_logo"
  9. android:layout_width="200dp"
  10. android:layout_height="200dp" />
  11. <TextView
  12. android:gravity="center"
  13. android:id="@+id/txtSlogan"
  14. android:text="@string/slogan"
  15. android:textColor="@android:color/white"
  16. android:layout_width="200dp"
  17. android:layout_height="wrap_content" />
  18.  
  19.  
  20. </LinearLayout>
  21. <LinearLayout
  22. android:orientation="horizontal"
  23. android:layout_alignParentBottom="true"
  24. android:weightSum="2"
  25. android:layout_width="match_parent"
  26. android:layout_height="wrap_content">
  27. <info.hoang8f.widget.FButton
  28. android:id="@+id/btnSignUp"
  29. android:text="Sign Up"
  30. android:textColor="@android:color/holo_red_dark"
  31. android:layout_weight="1"
  32. android:layout_width="0dp"
  33. android:layout_height="wrap_content"
  34. android:layout_margin="8dp"
  35. app:shadowColor="@android:color/black"
  36. app:shadowEnabled="true"
  37. app:shadowHeight="5dp"
  38. app:cornerRadius="4dp"
  39. app:buttonColor="@color/btnSignUp"
  40. />
  41. <info.hoang8f.widget.FButton
  42. android:id="@+id/btnSignIn"
  43. android:text="Sign In"
  44. android:textColor="@android:color/white"
  45. android:layout_weight="1"
  46. android:layout_width="0dp"
  47. android:layout_height="wrap_content"
  48. android:layout_margin="8dp"
  49. app:buttonColor="@color/btnSignActive"
  50. app:shadowColor="@android:color/black"
  51. app:shadowEnabled="true"
  52. app:shadowHeight="5dp"
  53. app:cornerRadius="4dp"
  54. />
  55.  
  56. </LinearLayout>
Add Comment
Please, Sign In to add comment