Advertisement
Guest User

Untitled

a guest
Mar 13th, 2013
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.13 KB | None | 0 0
  1. activitymusiclist
  2. <?xml version = "1.0" encoding = "utf-8"?>
  3.  
  4. <LinearLayout
  5.    xmlns:android = "http://schemas.android.com/apk/res/android"
  6.    android:layout_width = "fill_parent"
  7.    android:layout_height = "fill_parent"
  8.    android:orientation = "horizontal"
  9.    android:baselineAligned = "false">
  10.    
  11.     <fragment
  12.        android:id = "@+id/musicListFragment"
  13.        android:layout_width = "0dp"
  14.        android:layout_height = "match_parent"
  15.        android:layout_weight = "1"
  16.        android:name = "com.pluralism.unofficial.app.ListMusicFragment" />
  17.    
  18. </LinearLayout>
  19.  
  20. musiclistview
  21.  
  22. <?xml version = "1.0" encoding = "utf-8"?>
  23.  
  24. <LinearLayout
  25.    xmlns:android = "http://schemas.android.com/apk/res/android"
  26.    android:layout_width = "match_parent"
  27.    android:layout_height = "match_parent"
  28.    android:orientation = "vertical"
  29.    android:paddingLeft = "5dp"
  30.    android:paddingRight = "5dp">
  31.    
  32.     <ListView
  33.        android:id = "@+id/musicListView"
  34.        android:layout_width = "match_parent"
  35.        android:layout_height = "match_parent"
  36.        android:layout_weight = "1" />
  37.  
  38. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement