Advertisement
Guest User

Untitled

a guest
Mar 16th, 2012
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:stretchColumns="*" >
  6.  
  7. <TableRow >
  8.  
  9. <LinearLayout
  10. android:layout_width="fill_parent"
  11. android:layout_height="wrap_content"
  12. android:orientation="horizontal"
  13. android:weightSum="100" >
  14.  
  15. <TextView
  16. android:id="@+id/row1Label"
  17. android:layout_width="0dip"
  18. android:layout_height="wrap_content"
  19. android:layout_weight="40"
  20. android:text="afdfasdfd" >
  21. </TextView>
  22.  
  23. <TextView
  24. android:id="@+id/row1Label"
  25. android:layout_width="0dip"
  26. android:layout_height="wrap_content"
  27. android:layout_weight="60"
  28. android:text="afdfasdfd" >
  29. </TextView>
  30. </LinearLayout>
  31. </TableRow>
  32.  
  33. <TableRow >
  34.  
  35. <LinearLayout
  36. android:layout_width="fill_parent"
  37. android:layout_height="wrap_content"
  38. android:orientation="horizontal"
  39. android:weightSum="100" >
  40.  
  41. <TextView
  42. android:id="@+id/row2Label"
  43. android:layout_width="0dip"
  44. android:layout_height="wrap_content"
  45. android:layout_weight="40"
  46. android:text="afdfasdfd" >
  47. </TextView>
  48.  
  49. <TextView
  50. android:id="@+id/row3Label"
  51. android:layout_width="0dip"
  52. android:layout_height="wrap_content"
  53. android:layout_weight="60"
  54. android:text="afdfasdfd" >
  55. </TextView>
  56. </LinearLayout>
  57. </TableRow>
  58.  
  59. </TableLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement