3

ICS デバイスでダイアログをランドスケープ モードで表示すると、ダイアログはポートレート モードと同じ幅で表示されます。

ここに画像の説明を入力

ただし、ダイアログが横向きモードのときにジンジャーブレッドを実行しているデバイスでは、画面全体の幅が表示され、すべてがコンパクトではありません

ここに画像の説明を入力

2 番目の写真のように画面全体に表示されない ICS でのダイアログの表示方法を変更しましたか? 最初の写真のようにコンパクトに見えないように、2 番目の写真のように戻すにはどうすればよいですか?

また、このアプリケーションの対象となる API は 2.2 であるため、ICS API などを使用することはできません

編集

これが私のダイアログの呼び出し方です

incDialog = new MessageDialog(this, R.style.FullHeightDialog);
incDialog.PopUpMessage(this, oMessage);

ダイアログは、ダイアログを拡張する別のクラスにあります

これはPopUpMessage実際にダイアログを表示するメソッドです

    public void PopUpMessage(final Context context, clsMessageRecord oMessage) {
    MainActivity.lastMessageClicked = oMessage;
    moCallingContext = context;
    moMessage = oMessage;
    MainActivity.miShownDialogType = DialogID;
    MainActivity.setShownMessage(moMessage);
    MainActivity.mbIntentWasShown = true;
    Log.i(className + "::PopUpMessage", "New Message Dialog Show....");

    if (oMessage != null) {

        if (oMessage.getIsStation() == true) {
            // Incident Message Dialog
            this.setContentView(R.layout.message_st);
            clsStatusRecord oStation = ControlService.DB.StatusList.GetMessageByECM2ID(oMessage.ECM2ID);

            if (oStation != null) {
                if (oStation.AllowMapping()) {
                    ImageButton cmdMapping = (ImageButton) this.findViewById(R.id.cmdMapping);
                    cmdMapping.setVisibility(ImageButton.VISIBLE);
                    cmdMapping.setOnClickListener(new View.OnClickListener() {
                        public void onClick(View view) {
                            MainActivity.loaded = false;
                            HandleMapping();
                        }
                    });
                } else {
                    ImageButton cmdMapping = (ImageButton) this.findViewById(R.id.cmdMapping);
                    cmdMapping.setVisibility(ImageButton.GONE);
                }

                if (oStation.IsChief()) {
                    ImageButton cmdChief = (ImageButton) this.findViewById(R.id.cmdChiefList);
                    cmdChief.setVisibility(ImageButton.VISIBLE);
                    cmdChief.setOnClickListener(new View.OnClickListener() {
                        public void onClick(View view) {
                            MainActivity.loaded = false;
                            handleResponders();
                        }
                    });
                } else {
                    ImageButton cmdChief = (ImageButton) this.findViewById(R.id.cmdChiefList);
                    cmdChief.setVisibility(ImageButton.GONE);
                }
            }

            mStationID = moMessage.ECM2ID;
            mMessageID = moMessage.MessageID;

            TextView txtHeader = (TextView) this.findViewById(R.id.txtDialogHeader);
            TextView txtTOC = (TextView) this.findViewById(R.id.txtDialogTOC);
            TextView txtMessage = (TextView) this.findViewById(R.id.lblMessage);

            txtHeader.setText(oMessage.ECM2Name);
            txtTOC.setText(oMessage.TOC);
            txtMessage.setText(oMessage.MessageText);

            if(oMessage.MessageText.toUpperCase().startsWith("UPDATE")) {

                ImageButton cmdResp = (ImageButton) this.findViewById(R.id.cmdResponding);
                cmdResp.setEnabled(false);
                cmdResp.setImageResource(R.drawable.responding_disabled);

                ImageButton cmdDecl = (ImageButton) this.findViewById(R.id.cmdDeclining);
                cmdDecl.setEnabled(false);
                cmdDecl.setImageResource(R.drawable.declining_disabled);

                ImageButton cmdChief = (ImageButton) this.findViewById(R.id.cmdChiefList);
                cmdChief.setEnabled(false);
                cmdChief.setImageResource(R.drawable.chief_disabled);
            }

            ImageView imgIcon = (ImageView) this.findViewById(R.id.imgIcon);

            switch (oMessage.State) {
            case etMSNewMessage:
                imgIcon.setBackgroundDrawable(context.getResources().getDrawable(imgSTNew));
                break;

            case etMSResponded:
                imgIcon.setBackgroundDrawable(context.getResources().getDrawable(imgSTResponded));
                break;

            case etMSDeclined:
                imgIcon.setBackgroundDrawable(context.getResources().getDrawable(imgSTUnavailable));
                break;
            }

            Button cmdExit = (Button) this.findViewById(R.id.cmdExit);
            cmdExit.setOnClickListener(new View.OnClickListener() {
                public void onClick(View v) {
                    MainActivity.messageShown=false;
                    ClosePopup();
                }
            });

            ImageButton cmdDeclining = (ImageButton) this.findViewById(R.id.cmdDeclining);
            cmdDeclining.setOnClickListener(new View.OnClickListener() {
                public void onClick(View v) {
                    HandleDeclining(context);
                }
            });

            ImageButton cmdResponding = (ImageButton) this.findViewById(R.id.cmdResponding);
            cmdResponding.setOnClickListener(new View.OnClickListener() {
                public void onClick(View v) {
                    HandleResponding(context);
                }
            });

            Log.e(className + "::PopUpMessage", "Message View Shown (Incident)");
            this.show();
        } else {

            // Distribution List Dialog
            this.setContentView(R.layout.message_dl);

            Log.e(className + "::PopUpMessage", "Message Content Filling (Dist)");
            TextView txtHeader = (TextView) this.findViewById(R.id.txtDialogHeader);
            TextView txtTOC = (TextView) this.findViewById(R.id.txtDialogTOC);
            TextView txtMessage = (TextView) this.findViewById(R.id.lblMessage);

            txtHeader.setText(oMessage.ECM2Name);
            txtTOC.setText(oMessage.TOC);
            txtMessage.setText(oMessage.MessageText);

            ImageView imgIcon = (ImageView) this.findViewById(R.id.imgIcon);
            imgIcon.setBackgroundDrawable(context.getResources().getDrawable(imgDLRead));

            Button cmdExit = (Button) this.findViewById(R.id.cmdExit);
            cmdExit.setOnClickListener(new View.OnClickListener() {
                public void onClick(View v) {
                    MainActivity.messageShown=false;
                    MainActivity.disMessageShown=false;
                    HandleCancel();
                    messageType = false;
                }
            });

            ImageButton cmdReplyToSender = (ImageButton) this.findViewById(R.id.cmdReplyToSender);
            cmdReplyToSender.setOnClickListener(new View.OnClickListener() {
                public void onClick(View v) {
                    HandleReplyToSender();
                }
            });

            clsStatusRecord oRec = oMessage.GetStatusRecord();

            if (oRec != null) {
                ImageButton cmdReplyToDL = (ImageButton) this.findViewById(R.id.cmdReplyToDL);
                if (oRec.AllowWrite()) {
//                      ImageButton cmdReplyToDL = (ImageButton) this.findViewById(R.id.cmdReplyToDL);
                    cmdReplyToDL.setOnClickListener(new View.OnClickListener() {
                        public void onClick(View v) {
                            HandleReplyToDL();
                        }
                    });
                }else{
                    cmdReplyToDL.setEnabled(false);
                    cmdReplyToDL.setImageResource(R.drawable.replytodistlist_up_disabled);
                }
            }
            Log.e(className + "::PopUpMessage", "Message View Shown (Dist)");
            messageType = true;
            this.show();
        }
    } else {
    }
}

ここにxmlレイアウトがあります

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_root"              
android:orientation="vertical"
android:layout_height="match_parent"
android:padding="2dip" android:paddingTop="2dip" android:layout_width="fill_parent">

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_height="match_parent"
    android:padding="0dip" android:layout_width="fill_parent">

    <RelativeLayout
        android:id="@+id/contentLayout2" 
        android:orientation="vertical" 
        android:padding="0dip" 
        android:layout_height="wrap_content"
        android:layout_gravity="top|left"
        android:background="#000000"
        android:layout_weight="0" android:layout_width="fill_parent">   

        <ImageView 
            android:id="@+id/imgIcon" 
            android:layout_height="wrap_content" 
            android:layout_width="wrap_content"
            android:layout_gravity="top|left" android:contentDescription="@string/desc">
        </ImageView>

        <TextView 
            android:layout_height="wrap_content" 
            android:text="" 
            android:id="@+id/txtDialogHeader" 
            android:layout_width="match_parent" 
            android:textStyle="bold" 
            android:layout_toRightOf="@id/imgIcon"
            android:paddingLeft="5dip" android:textColor="#ff2525" android:textSize="18dip">
        </TextView>

        <TextView 
            android:layout_height="wrap_content" 
            android:text="" 
            android:id="@+id/txtDialogTOC" 
            android:layout_width="match_parent" 
            android:layout_toRightOf="@id/imgIcon"
            android:layout_below="@id/txtDialogHeader"
            android:paddingLeft="5dip" android:textSize="19dip" android:textStyle="bold">
        </TextView>

    </RelativeLayout>

    <ScrollView    
        android:id="@+id/scrollMessageFrame"  
        android:layout_height="match_parent" 
        android:padding="0dip"
        android:background="#AA0000"
        android:layout_weight="1" android:layout_width="fill_parent">

        <TextView 
            android:layout_height="wrap_content" 
            android:layout_width="match_parent" 
            android:text="" 
            android:id="@+id/lblMessage"  
            android:padding="5dip"
            android:background="#000000"
            android:minHeight="140dip" android:textColor="#f2f2f2" android:textSize="20dip">
        </TextView>

    </ScrollView> 

    <RelativeLayout
        android:id="@+id/contentLayout3" 
        android:orientation="vertical" 
        android:background="#000000" 
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|center_horizontal" android:gravity="center_horizontal" android:layout_width="match_parent">

        <ImageButton
            android:id="@+id/cmdResponding"
            android:layout_width="62dip"
            android:layout_height="62dip"
            android:layout_marginRight="10dip"
            android:contentDescription="@string/desc"
            android:src="@drawable/responding_ref" android:background="@drawable/responding_up" android:layout_marginTop="5dip" android:layout_marginLeft="5dip">
</ImageButton>
        <ImageButton android:id="@+id/cmdDeclining" android:src="@drawable/declining_ref" android:background="@drawable/declining_up" android:layout_alignTop="@+id/cmdResponding" android:layout_alignBottom="@+id/cmdResponding" android:layout_height="62dip" android:layout_width="62dip" android:layout_marginLeft="3dip" android:layout_toRightOf="@+id/cmdResponding" android:layout_marginRight="10dip" android:contentDescription="@string/desc"></ImageButton>

        <ImageButton
            android:id="@+id/cmdChiefList"
            android:layout_width="62dip"
            android:layout_height="62dip"
            android:layout_toRightOf="@+id/cmdDeclining" android:background="@drawable/chief_up" android:layout_marginRight="10dip" android:src="@drawable/chief_ref" android:contentDescription="@string/desc" android:layout_marginTop="5dip" android:layout_marginLeft="6dip"/>

        <ImageButton android:id="@+id/cmdMapping" android:background="@drawable/globe_up" android:src="@drawable/mapping_ref" android:layout_height="60dip" android:layout_width="60dip" android:layout_marginLeft="2dip" android:layout_toRightOf="@+id/cmdChiefList" android:layout_marginTop="5dip" android:contentDescription="@string/desc"></ImageButton>

    </RelativeLayout>

</LinearLayout>

<Button 
    android:text="" 
    android:textSize="16dip"
    android:layout_height="40dip" 
    android:layout_width="40dip" 
    android:id="@+id/cmdExit" 
    android:background="@drawable/closepopup"
    android:layout_gravity="top|right" android:contentDescription="@string/desc">
</Button>

</FrameLayout>
4

2 に答える 2

6

はい、API 11 はタブレットと大画面を対象としており、AlertDialog は Holo テーマで画面全体をカバーしないように設計されています。デフォルトのサイズは画面サイズによって異なります (画面幅のパーセント幅として表されます)。

MessageDialog の基本クラスが何であるかは明確ではありません。AlertDialog を継承すると仮定すると、テーマはダイアログのサイズを設定します。

マニフェストに android:targetSdkVersion>=11 があると仮定すると、アプリはダイアログに Theme.Holo.Dialog.Alert テーマを使用し、android:windowMinWidthMajor と android:windowMinWidthMinor を設定してダイアログの幅を指定します。

これを修正するには、android:targetSdkVersion=10 を設定するか、親テーマが Theme.Holo.Dialog.Alert であるダイアログに独自のテーマを作成して使用し、前述の幅の項目を上書きします。

于 2012-07-10T07:29:57.350 に答える
1

カスタム ダイアログを作成する場合は、それらを XML ファイルで作成することをお勧めします。

私のカスタム ダイアログでは、 Android:layout_width="wrap_content" で RelativeLayout を使用しており、画面の向きとその内容に適切に適応します。

dialog_layout.xml は次のようになります。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/dialog_background"
    android:padding="@dimen/dialog_padding" >

    <TextView
    android:id="@+id/text_view"
    style="@style/WhiteTextLabel"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" 
    android:layout_alignParentTop="true"
    android:text="@string/dialog_text" />

    <LinearLayout
        android:id="@+id/buttons"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/text_view"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/button_cancel" 
            style="@style/RedCancelButton"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/button_cancel" />

        <Button
            android:id="@+id/button_done"
            style="@style/GreenDoneButton"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/button_done" />
    </LinearLayout>
</RelativeLayout>

Java コードからインフレートするには:

final Dialog aDialog = new Dialog(this);
aDialog.requestWindowFeature(Window.FEATURE_LEFT_ICON);
aDialog.setTitle(getString(R.string.dialog_title));
aDialog.setContentView(R.layout.dialog_layout);
aDialog.setFeatureDrawableResource(Window.FEATURE_LEFT_ICON, R.drawable.ic_dialog_icon);
aDialog.setCancelable(true);

final Button buttonDone = (Button) aDialog.findViewById(R.id.button_done);
final Button buttonCancel = (Button) aDialog.findViewById(R.id.button_cancel);

    buttonDone.setOnClickListener(new OnClickListener() {
    public void onClick(View v) {
        // TODO Do something...
        aDialog.cancel();
    }
    });             
    buttonCancel.setOnClickListener(new OnClickListener() {                 
    public void onClick(View v) {
        // Do nothing
        aDialog.cancel();
    }
    });         
aDialog.show();

私の minSdkVersion は 8 で、targetSdkVersion は 15 です。ダイアログにテーマを適用していませんが、背景 (描画可能な形状)、ボタン (スタイル付き) などをカスタマイズしています。ダイアログは、Froyo のデバイスで同じように見え、同じように動作します。任意の向きで ICS に接続します。

/layout/ フォルダーに xml が 1 つだけありますが、同じ名前の別の xml を作成し、/layout-land/ フォルダーの向きに応じて微調整することをお勧めします。

新しい API には Dialog Fragments がありますが、 Using Dialog Fragmentsを参照してください。それらも参照することをお勧めします。

これが役立つことを願っています。幸運を!

于 2012-07-05T17:33:53.743 に答える