1
我在使用主題對話框的活動中使用微調。 我無法讓紡紗工填補家長的寬度 - 這些總是隻在文本的長度 - 無論我做什麼。這是我的佈局定義。微調不填寫其父母
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_height="match_parent" android:layout_width="match_parent" android:orientation="vertical">
<LinearLayout android:id="@+id/weight_units"
android:layout_width="match_parent" android:gravity="top|center_vertical|center_horizontal"
android:orientation="horizontal" android:layout_marginBottom="3dip" android:layout_marginTop="3dip" android:layout_height="wrap_content">
<TextView android:layout_marginRight="3dip" android:id="@+id/spinner_lbl"
android:text="@string/weight_units"
android:layout_marginLeft="3dip" android:layout_height="wrap_content"
android:layout_width="match_parent" android:layout_gravity="center_vertical|center_horizontal" android:layout_weight="1" ></TextView>
<Spinner android:id="@+id/weight_spinner" android:layout_height="wrap_content" android:layout_weight="1" android:layout_width="match_parent"></Spinner>
</LinearLayout>
<LinearLayout android:orientation="vertical"
android:paddingTop="2dip" android:paddingBottom="2dip" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1">
<TextView android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_marginTop="10dip"
android:text="@string/calc_formula_prompt" />
<Spinner android:id="@+id/calc_spinner" android:layout_height="wrap_content" android:prompt="@string/calc_formula_prompt" android:layout_width="fill_parent"/>
</LinearLayout>
需要明確的是 - 我想活動被打開爲對話框,並抓住了屏幕的大部分 - 但是當我的風景 - 微調沒有被拉伸到全父寬度。
預先感謝