4

android-layoutsに加えていくつかの助けが必要です。例の場合:

実際、私はdaily.xmlというビューを使用しています。これらのビューには、ユーザーが必要に応じて反転する5つのListViewがプログラムで入力されたフリッパーが含まれています。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="@drawable/background">

    <de.oszimtcc.timetableview.TimetableFlipperView
        android:id="@+id/flipper"
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:layout_margin="20dp"
        android:background="@android:color/transparent"
        android:cacheColorHint="@android:color/transparent" >
    </de.oszimtcc.timetableview.TimetableFlipperView>
</LinearLayout>

TimetableScreen.javaのフリッパー

    activity.setContentView(R.layout.daily);
    Log.i(TimetableApplication.LOG_TAG,"Start create Timetable-Aplication");
    activity.setContentView(R.layout.daily);   

    activity.inflater = LayoutInflater.from(this.activity);     
    flipper = (TimetableFlipperView) activity.findViewById(R.id.flipper); 
    dayListView = (ListView) activity.findViewById(R.id.dayListView);
    flipper.AddContent(**Content to show **);

ここで、landscapemodeを追加します。これらのモードでは、このようなフリッパーを使用しないため、すべてのListViewを水平線形レイアウトで表示するのに十分なスペースがあるため、layout-landResource-Folderを作成して毎日追加します。 xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:background="@drawable/background">

<de.oszimtcc.timetableview.BlockListView
    android:id="@+id/dayListViewMonday"
    android:layout_width="wrap_content"
    android:layout_height="match_parent" 
    android:padding="5dp"
    android:listSelector="@drawable/day_selector"
    android:background="@android:color/transparent"
android:cacheColorHint="@android:color/transparent">
</de.oszimtcc.timetableview.BlockListView>

...the same ListView again for 4 times, with different android:id...

</LinearLayout>

しかし、これをTimetableScreen.javaクラスにどのように処理できますか?フリッパーがないため、デフォルトのコンストラクターを使用してクラスを初期化することはできません.onCreateが呼び出されるたびに異なるメソッドを呼び出す必要がありますか、それともより良い可能性がありますか?扱う?

Kookiさん、どうもありがとうございました!

4

1 に答える 1

3

getResources().getConfiguration().orientation画面の向きを確認するために、を使用できます。ランドスケープモードの場合は、フリッパー変数を初期化しないでください。コードに1行追加しました。if制御ステートメントを確認してください

 activity.setContentView(R.layout.daily);
Log.i(TimetableApplication.LOG_TAG,"Start create Timetable-Aplication");
activity.setContentView(R.layout.daily);   

if(getResources().getConfiguration().orientation == Configuration.ORIENTATION_POTRAIT) {   //Check this statement
activity.inflater = LayoutInflater.from(this.activity);     
flipper = (TimetableFlipperView) activity.findViewById(R.id.flipper); 
dayListView = (ListView) activity.findViewById(R.id.dayListView);
flipper.AddContent(**Content to show **);
} else {
//Code for Landscape mode
}
于 2012-06-15T07:35:50.267 に答える