2011-05-23 55 views
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> 

需要明確的是 - 我想活動被打開爲對話框,並抓住了屏幕的大部分 - 但是當我的風景 - 微調沒有被拉伸到全父寬度。

預先感謝

回答

0

的問題是這樣的事實:這種觀點膨脹並用作ViewFlipper的搶答之一。 缺少並導致這種令人討厭的行爲的代碼是使用正確的LayoutParams將鰭狀肢添加到其父級佈局。

flipper = new MyViewFlipper(this, gestureDetector); 
    lay1.addView(flipper,new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT)); 

我對不完整的問題表示歉意 - 我不知道它可能與鰭狀肢被添加到其父母的方式有關。