Advertisement
Guest User

Untitled

a guest
Apr 18th, 2015
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 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:background="#000000"
  6. android:clickable="true"
  7. android:descendantFocusability="blocksDescendants"
  8. android:orientation="vertical" >
  9. <ImageView
  10. android:id="@+id/imgListView"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:layout_alignParentLeft="true"
  14. android:layout_centerVertical="true"
  15. android:focusable="false"
  16. android:src="@drawable/ic_launcher" />
  17. <TextView
  18. android:id="@+id/txtListView"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:layout_centerVertical="true"
  22. android:layout_toRightOf="@id/imgListView"
  23. android:focusable="false"
  24. android:textColor="#FFFFFF" />
  25. <CheckBox
  26. android:id="@+id/chkListView"
  27. android:layout_width="wrap_content"
  28. android:layout_height="wrap_content"
  29. android:layout_alignParentRight="true"
  30. android:layout_centerVertical="true"
  31. android:focusable="false" />
  32. </RelativeLayout>
  33.  
  34. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  35. xmlns:tools="http://schemas.android.com/tools"
  36. android:layout_width="match_parent"
  37. android:layout_height="match_parent"
  38. android:background="#000000"
  39. android:paddingBottom="@dimen/activity_vertical_margin"
  40. android:paddingLeft="@dimen/activity_horizontal_margin"
  41. android:paddingRight="@dimen/activity_horizontal_margin"
  42. android:paddingTop="@dimen/activity_vertical_margin"
  43. tools:context=".FolderActivity" >
  44. <ListView
  45. android:id="@+id/lstFolders"
  46. android:layout_width="match_parent"
  47. android:layout_height="match_parent"
  48. android:layout_alignParentLeft="true"
  49. android:layout_alignParentTop="true"
  50. android:dividerHeight="1dp"
  51. android:divider="#FFFFFF">
  52. </ListView>
  53. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement