2012-11-02 81 views
1

我爲一個活動創建了一個佈局。該佈局包含一些圖像按鈕和文本視圖。問題是,當我將設備的方向設置爲縱向時,其工作正常,但是當我將方向更改爲橫向時,佈局會產生意想不到的結果。佈局方向變化劇烈

這裏是我的佈局文件

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:fillViewport="true" 
    android:padding="50dp" > 


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" > 

    <ImageView 
     android:id="@+id/settings_imageView" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_alignParentBottom="true" 
     android:layout_alignParentLeft="true" 
     android:src="@android:drawable/bottom_bar" /> 

    <TextView 
     android:id="@+id/settings_textView" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentBottom="true" 
     android:layout_centerHorizontal="true" 
     android:layout_marginBottom="16dp" 
     android:text="@string/my_settings" 
     android:textAppearance="?android:attr/textAppearanceMedium" /> 

    <ImageView 
     android:id="@+id/myProgramming_imageView" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_above="@+id/settings_imageView" 
     android:layout_alignParentLeft="true" 
     android:src="@android:drawable/bottom_bar" /> 

    <TextView 
     android:id="@+id/myProgramming_textView" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignBottom="@+id/myProgramming_imageView" 
     android:layout_centerHorizontal="true" 
     android:layout_marginBottom="14dp" 
     android:text="@string/my_programming" 
     android:textAppearance="?android:attr/textAppearanceMedium" /> 

    <ImageView 
     android:id="@+id/library_imageView" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_above="@+id/myProgramming_imageView" 
     android:layout_alignParentLeft="true" 
     android:src="@android:drawable/bottom_bar" /> 

    <TextView 
     android:id="@+id/library_textView" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignBottom="@+id/library_imageView" 
     android:layout_centerHorizontal="true" 
     android:layout_marginBottom="16dp" 
     android:text="@string/library" 
     android:textAppearance="?android:attr/textAppearanceMedium" /> 

</RelativeLayout> 
</ScrollView> 

這裏是設備的肖像模式的輸出,這是預計在縱向和橫向模式的輸出:

Portrait mode

這裏是輸出爲風景模式對設備,這是意外:

Landscape mode

我想要的佈局看起來很像在縱向和橫向模式。

+0

是否必須使用相對佈局? –

回答