Advertisement
Guest User

xml

a guest
Jun 24th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:id="@+id/activity_main"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="@color/colorPrimary"
  8. tools:context=".VideoViewActivity">
  9. <com.google.android.youtube.player.YouTubePlayerView
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:visibility="visible"
  13. android:layout_centerHorizontal="true"
  14. android:id="@+id/youtube_player"
  15. android:layout_alignParentTop="true" />
  16. <Button
  17. android:text="ভিডিও শুরু করুন"
  18. android:textColor="#46FAA0"
  19. android:textSize="30sp"
  20. android:layout_width="250dp"
  21. android:layout_height="50dp"
  22. android:background="@drawable/buttonshape3"
  23. android:shadowColor="#000302"
  24. android:shadowDx="0"
  25. android:shadowDy="0"
  26. android:shadowRadius="5"
  27. android:layout_alignParentBottom="true"
  28. android:layout_centerHorizontal="true"
  29. android:layout_marginBottom="195dp"
  30. android:visibility="visible"
  31. android:id="@+id/button3" />
  32. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement