Advertisement
AnupamHim

SongLIstView

Mar 25th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical" android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="#ebcf1f28"
  6. >
  7.  
  8.  
  9. <LinearLayout
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content">
  12.  
  13.  
  14. <TextView
  15. android:id="@+id/back"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:layout_marginTop="15dp"
  19. android:layout_marginLeft="150dp"
  20. android:layout_marginBottom="10dp"
  21. android:text="Back"
  22. android:textSize="30dp"
  23. android:textColor="#00f"
  24. />
  25. </LinearLayout>
  26. <LinearLayout
  27. android:layout_width="wrap_content"
  28. android:layout_height="wrap_content">
  29.  
  30. <TextView
  31. android:id="@+id/textColor"
  32. android:layout_width="wrap_content"
  33. android:layout_height="wrap_content"
  34. android:textColor = "#262323"
  35. />
  36.  
  37. <ListView
  38. android:id="@+id/list_view"
  39. android:layout_width="match_parent"
  40. android:layout_height="match_parent"
  41. >
  42.  
  43. </ListView>
  44. </LinearLayout>
  45.  
  46.  
  47.  
  48. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement