Advertisement
gPhoenix

davviddooo

Apr 28th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:paddingBottom="@dimen/activity_vertical_margin">
  6.  
  7.  
  8. <LinearLayout
  9. android:id="@+id/rev_player"
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:orientation="horizontal"
  13. android:layout_alignParentBottom="true"
  14. android:background="@android:color/transparent"
  15. android:layout_centerHorizontal="true">
  16.  
  17. <ImageButton
  18. android:id="@+id/btn_prevTrack"
  19. android:layout_width="0dp"
  20. android:layout_height="wrap_content"
  21. android:layout_weight="1"
  22. android:layout_marginTop="14dp"
  23. android:background="@drawable/btn_previous"
  24. android:contentDescription="@string/description_img_prevTrack"/>
  25.  
  26. <ImageButton
  27. android:id="@+id/btn_play"
  28. android:layout_width="0dp"
  29. android:layout_height="wrap_content"
  30. android:layout_weight="1.75"
  31. android:background="@drawable/btn_play"
  32. android:contentDescription="@string/description_img_play" />
  33.  
  34. <ImageButton
  35. android:id="@+id/btn_nextTrack"
  36. android:layout_width="0dp"
  37. android:layout_height="wrap_content"
  38. android:layout_weight="1"
  39. android:layout_marginTop="14dp"
  40. android:background="@drawable/btn_next"
  41. android:contentDescription="@string/description_img_nextTrack"/>
  42.  
  43. </LinearLayout>
  44.  
  45. <ListView
  46. android:id="@+id/list_soundsList"
  47. android:layout_width="match_parent"
  48. android:layout_height="wrap_content"
  49. android:layout_alignParentTop="true"
  50. android:layout_above="@id/rev_player"
  51.  
  52. android:divider="#242424"
  53. android:dividerHeight="1dp"
  54. android:listSelector="@drawable/list_selector"/>
  55.  
  56. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement