Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 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:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical"
  6. android:background="@drawable/background_1">
  7. <ListView
  8. android:id="@android:id/list"
  9. android:layout_width="fill_parent"
  10. android:layout_height="fill_parent" />
  11. </LinearLayout>
  12.  
  13. <?xml version="1.0" encoding="utf-8"?>
  14. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  15. android:layout_width="fill_parent"
  16. android:layout_height="wrap_content"
  17. android:background="@drawable/background_1"
  18. android:orientation="vertical" >
  19.  
  20. <TextView
  21. android:id="@+id/uid"
  22. android:layout_width="fill_parent"
  23. android:layout_height="wrap_content"
  24. android:visibility="gone" />
  25.  
  26. <TextView
  27. android:id="@+id/name"
  28. android:layout_width="fill_parent"
  29. android:layout_height="wrap_content"
  30. android:text="text view"
  31. android:textColor="#FFFFFF"
  32. android:textSize="17dip"
  33. android:textStyle="bold" />
  34.  
  35. <TextView
  36. android:id="@+id/txtCreateDate"
  37. android:layout_width="wrap_content"
  38. android:layout_height="wrap_content"
  39. android:layout_alignParentRight="true"
  40. android:layout_alignParentTop="true"
  41. android:text="TextView"
  42. android:textColor="#FFFFFF" />
  43.  
  44. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement