Guest User

Untitled

a guest
Jan 19th, 2013
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 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="fill_parent"
  4. android:layout_height="wrap_content"
  5. android:orientation="horizontal"
  6. android:padding="5dip" >
  7.  
  8. <ImageView
  9. android:id="@+id/list_image"
  10. android:layout_width="50dip"
  11. android:layout_height="50dip"
  12. android:contentDescription="@string/des_listimg" />
  13.  
  14. <LinearLayout
  15. android:orientation="vertical"
  16. android:layout_width="0dip"
  17. android:layout_height="match_parent"
  18. android:layout_weight="3.12"
  19. android:padding="3dip" >
  20.  
  21. <TextView
  22. android:id="@+id/list_product_name"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:text="@string/text_product_name"
  26. android:textSize="15sp"
  27. android:singleLine="true" />
  28.  
  29. <TextView
  30. android:id="@+id/list_product_description"
  31. android:layout_width="wrap_content"
  32. android:layout_height="wrap_content"
  33. android:text="@string/text_product_description"
  34. android:textColor="#343434"
  35. android:textSize="10sp" />
  36.  
  37. </LinearLayout>
  38. <ImageView
  39. android:id="@+id/list_add_cart"
  40. android:layout_width="50dip"
  41. android:layout_height="50dip"
  42. android:contentDescription="@string/des_addcart"
  43. />
  44.  
  45. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment