Advertisement
Guest User

Untitled

a guest
Sep 16th, 2012
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_width="fill_parent"
  3. android:layout_height="fill_parent"
  4. android:padding="0dip">
  5. <ImageView
  6. android:id="@+id/icon"
  7. android:layout_width="wrap_content"
  8. android:layout_height="wrap_content"
  9. android:layout_marginRight="6dip"
  10. android:src="@drawable/icon" />
  11. <LinearLayout
  12. android:orientation="vertical"
  13. android:layout_width="0dip"
  14. android:layout_weight="1"
  15. android:layout_height="wrap_content">
  16. <TextView
  17. android:text="hey1"
  18. android:id="@+id/row_title"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. style="bold"/>
  22. <TextView
  23. android:text="hey2"
  24. android:id="@+id/row_subtitle"
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27.  
  28. />
  29. <TextView
  30. android:text="hey3"
  31. android:id="@+id/row_postcode_city"
  32. android:layout_width="wrap_content"
  33. android:layout_height="wrap_content"
  34.  
  35. />
  36. </LinearLayout>
  37. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement