2012-01-14 133 views
0

我想以編程方式更改對話框的佈局:更改根LinearLayout方向。這個LinearLayout根包含兩個佈局:GT和DI。 如果我使用AlertDialog,它會很好用,但如果我直接使用對話框(使用帶有自定義樣式的對話框,因爲我不需要任何標題或標題空間),則效果不佳。Android:動態佈局更改對話框

這裏是我的XML佈局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/root_container" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:orientation="horizontal" > 

<LinearLayout 
    android:id="@+id/GT_container" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:orientation="vertical" > 

    <TextView 
     android:id="@+id/textView1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="GT" 
     android:textAppearance="?android:attr/textAppearanceMedium" /> 

    <RadioGroup 
     android:id="@+id/GT_group" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" > 

     <RadioButton 
      android:id="@+id/radioButton2" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:checked="true" 
      android:height="5dp" 
      android:text="GT #1" /> 

     <RadioButton 
      android:id="@+id/radioButton1" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:height="5dp" 
      android:text="GT #2" /> 

    </RadioGroup> 
</LinearLayout> 

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/DI_container" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:background="#FF0000" 
    android:orientation="vertical" > 

    <TextView 
     android:id="@+id/textView3" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:text="DI" 
     android:textAppearance="?android:attr/textAppearanceMedium" /> 

    <ScrollView 
     android:id="@+id/scrollView1" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:scrollbarAlwaysDrawVerticalTrack="true" > 

     <LinearLayout 
      android:id="@+id/linearLayout1" 
      android:layout_width="fill_parent" 
      android:layout_height="fill_parent" > 

      <RadioGroup 
       android:id="@+id/DI_group" 
       android:layout_width="fill_parent" 
       android:layout_height="fill_parent" > 

       <RadioButton 
        android:id="@+id/DI_rdb_1" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:checked="true" 
        android:text="DI #1" /> 

       <RadioButton 
        android:id="@+id/DI_rdb_2" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:checked="true" 
        android:text="DI #2" /> 
      </RadioGroup> 
     </LinearLayout> 
    </ScrollView> 
</LinearLayout> 

這裏是我的代碼:

LayoutInflater inflater = (LayoutInflater) activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE); 
View rootLayout = inflater.inflate(R.layout.new_game, (ViewGroup) activity.findViewById(R.id.root_container)); 

if (screenIsLandscape) { 
    ((LinearLayout) rootLayout).setOrientation(LinearLayout.HORIZONTAL); 
} else { 
    ((LinearLayout) rootLayout).setOrientation(LinearLayout.VERTICAL); 
} 

Dialog dlg = new Dialog(activity, R.style.FullHeightDialog); 
dlg.requestWindowFeature(Window.FEATURE_NO_TITLE); 
dlg.setContentView(R.layout.my_layout); 
dlg.show(); 

我不想用 「佈局土地」,以避免重複XML(我的XML是相當大,但在這裏簡化這篇文章)。 預先感謝您。

+0

你試圖改變的setContentView()到2之間切換? – 2012-01-15 07:01:10

+0

謝謝。對不起,但我不明白:什麼和什麼之間切換?在setContentView()中,我當前使用'R.layout.my_layout',這是我唯一的XML資源佈局文件的名稱。如果你的意思是在GT和DI之間切換,這不是我要找的:我想將它們從水平佈局到垂直佈局,反之亦然 – xav 2012-01-15 10:03:30

回答

3

您從xml文件創建了新的對象「rootLayout」,然後對其進行了更改(rootLayout,而不是xml)。現在這個對象沒有與你的文件鏈接。

你有改變的對象,使用方法:

dlg.setContentView(rootLayout);

+0

猜你是對的,投票支持記錄:) – xav 2014-02-27 13:33:48