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>

これがデバイスのポートレートモードの出力であり、これはポートレートモードとランドスケープモードの両方で期待される出力です。

ポートレートモード

これがデバイスのランドスケープ モードの出力です。これは予期しないことです。

横長モード

ポートレートモードとランドスケープモードで同じようにレイアウトを表示したい。

4

4 に答える 4

2

最初に、異なるレイアウト用に次のフォルダーを作成する必要があります.....

Folder Name                       

layout-ldpi                           
layout-land-ldpi                    

layout-mdpi                           
layout-land-mdpi                      

layout-hdpi                           
layout-land-hdpi                      

layout-xlarge                        
layout-xlarge-land                    

1...AndroidManifest.xml の変更

android:configChanges="orientation|keyboardHidden"

2....layout フォルダーに layout_land.xml を作成します。

3....layout-land フォルダーに layout_port.xml を作成します。

4...以下のメソッドを作成

@Override
public void onConfigurationChanged(Configuration newConfig) 
{
    super.onConfigurationChanged(newConfig);


    if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) 
    {
        setContentView(R.layout.layout_land);
        set_all_id();
    } 
    else if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT)
    {
        setContentView(R.layout.layout_port);
        set_all_id();
    }
}

5....OnCreateメソッドの変更(この内容のみ)

@Override
public void onCreate(Bundle savedInstanceState)
{

    super.onCreate(savedInstanceState);
    if (getResources().getConfiguration().orientation == 1)
    {
        setContentView(R.layout.layout_port);
    }
    if (getResources().getConfiguration().orientation == 2)
    {
        setContentView(R.layout.layout_land);
    }
    set_all_id();

}

6...ビューオブジェクトの初期化のための set_all_id() メソッドを作成する

public void set_all_id()
{
    //define id for all view objects..
    //textview = (textview)findViewById(R.id.textview);
}
于 2012-11-02T06:28:50.347 に答える
1

landscapeモードの高さが低いため、レイアウトは次のように表示されます。

私によると、良い方法は、resフォルダーにレイアウトランドを維持し、ランドスケープモードのレイアウトを設計することです。見栄えがするように

于 2012-11-02T05:38:29.323 に答える
1

-screen sizeここで問題が発生しているようです。

-ディレクトリの下に別のフォルダ を作成する必要があります。その中に、フォルダで行ったのと同じようにファイルを作成し、でのように見えるようにします。reslayout-land.xmllayoutlandscape mode

-アプリがlandscapeモードに入ると、このファイルが自動的.xmlに(つまり、layout-landから)フォルダーから選択されます。

于 2012-11-02T05:39:52.897 に答える
1
  • フォルダー /res/layout-land を作成します (ここでは、横向きに調整されたレイアウトを保持します)
  • そこに chooseActivity.xml をコピーします
  • それに必要な変更を加えます
于 2012-11-02T05:50:11.610 に答える