Advertisement
Guest User

row

a guest
Sep 27th, 2011
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.16 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. android:id="@+id/widget0"
  4. android:orientation="horizontal"
  5. android:layout_toRightOf="@android:id/icon"
  6. android:layout_width="fill_parent"
  7. android:layout_height="fill_parent"
  8. xmlns:android="http://schemas.android.com/apk/res/android"
  9. >
  10. <com.gridview.ListItemView
  11. android:id="@+id/symbol"
  12. android:layout_height="20dp"
  13. android:layout_width="110dp"
  14. android:text="Symbol"
  15. android:textSize="12sp"
  16. android:textStyle="bold"
  17. android:textColor="#ffffff"
  18. android:background="@drawable/editbackgrd"
  19. android:gravity="center"
  20.  
  21. />
  22. <com.gridview.ListItemView
  23. android:id="@+id/msgType"
  24. android:layout_height="20dp"
  25. android:layout_width="110dp"
  26. android:text="MsgType"
  27. android:textSize="12sp"
  28. android:textStyle="bold"
  29. android:textColor="#ffffff"
  30. android:background="@drawable/editbackgrd"
  31. android:gravity="center"
  32. />
  33. <com.gridview.ListItemView
  34. android:id="@+id/Price"
  35. android:layout_height="20dp"
  36. android:layout_width="110dp"
  37. android:text="Price"
  38. android:textSize="12sp"
  39. android:textStyle="bold"
  40. android:textColor="#ffffff"
  41. android:background="@drawable/editbackgrd"
  42. android:gravity="center"
  43. />
  44. </LinearLayout>
  45.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement