Advertisement
AnupamHim

musicPlayer

Mar 25th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:paddingBottom="@dimen/activity_vertical_margin"
  7. android:paddingLeft="@dimen/activity_horizontal_margin"
  8. android:paddingRight="@dimen/activity_horizontal_margin"
  9. android:paddingTop="@dimen/activity_vertical_margin"
  10. android:background="#00808b"
  11. tools:context="com.example.anupam.favouritesonglist.MainActivity"
  12. android:orientation="vertical">
  13.  
  14. <LinearLayout
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:orientation="horizontal">
  18.  
  19. <ImageView
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content"
  22.  
  23. />
  24. </LinearLayout>
  25.  
  26. <LinearLayout
  27. android:layout_marginTop="180dp"
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:orientation="horizontal"
  31. >
  32.  
  33. <Button
  34. android:id="@+id/play_list"
  35. android:layout_marginTop="5dp"
  36. android:layout_marginLeft="15dp"
  37. android:layout_height="wrap_content"
  38. android:layout_width="wrap_content"
  39. android:text="Play List"
  40. android:textStyle="bold"
  41. android:textSize="15dp"
  42. android:textColor="#0000ff"
  43. android:drawableRight="@drawable/playlist"
  44. />
  45.  
  46.  
  47. <Button
  48. android:id="@+id/create_list"
  49. android:layout_marginTop="5dp"
  50. android:layout_marginStart="20dp"
  51. android:layout_width="wrap_content"
  52. android:layout_height="wrap_content"
  53. android:text="create list"
  54. android:textStyle="bold"
  55. android:textSize="15dp"
  56. android:textColor="#00088b"
  57. android:drawableRight="@drawable/create1"
  58.  
  59.  
  60. />
  61.  
  62.  
  63. </LinearLayout>
  64.  
  65. <LinearLayout
  66.  
  67. android:layout_width="wrap_content"
  68. android:layout_height="wrap_content"
  69. android:orientation="horizontal">
  70.  
  71. <Button
  72. android:id="@+id/songs"
  73. android:layout_marginTop="10dp"
  74. android:layout_marginLeft="110dp"
  75. android:layout_width="wrap_content"
  76. android:layout_height="wrap_content"
  77. android:text="Songs"
  78. android:textStyle="bold"
  79. android:textSize="15dp"
  80. android:textColor="#0000ff"
  81. android:drawableRight="@drawable/songs"
  82. />
  83.  
  84.  
  85. </LinearLayout>
  86.  
  87.  
  88. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement