转-安卓中实现两端对齐,中间fill_parent的方法

时间:2023-01-14 12:48:26

安卓中实现两端对齐,中间fill_parent的方法

Java代码:  
  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="fill_parent"
  5. android:orientation="horizontal" >
  6. <Button
  7. android:id="@+id/Button01"
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:text="button01" >
  11. </Button>
  12. <TextView
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:layout_weight="1" />
  16. <Button
  17. android:id="@+id/Button02"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:text="button02" >
  21. </Button>
  22. </LinearLayout>