2010年7月20日星期二

怎麼設定layout_width為50%

關於layout_width, 最常見的設定可能是"wrap_content"和"fill_parent", 但它沒有"50%"設定, 那麼怎麼設定layout_width為50%? 可以使用以下方法:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<LinearLayout
android:orientation="vertical"
android:layout_height="wrap_content"
android:layout_width="0dip"
android:layout_weight="1"
>
<TextView
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="50%"
/>
<Button
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="OK"
/>
</LinearLayout>
<Button
android:layout_height="wrap_content"
android:layout_width="0dip"
android:layout_weight="1"
android:text="50 %"
/>
</LinearLayout>


怎麼設定layout_width為50%

相關文章:
- 通過 Java 代碼設定 layout_width 為 50%

沒有留言:

發佈留言