276

Androidでカスタムダイアログを生成しようとしています。次のようにダイアログを作成します。

dialog = new Dialog(this);
dialog.setContentView(R.layout.my_dialog);

ダイアログのタイトルを除いて、すべてが正常に機能します。ダイアログのタイトルを設定しなくても、ダイアログポップアップのダイアログの位置に空白があります。

ダイアログのこの部分を非表示にする方法はありますか?

AlertDialogで試してみましたが、レイアウトが正しく設定されていないようです。

LayoutInflater inflater = 
    (LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.map_dialog, null);

AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setView(view);

// dialog = new Dialog(this);
// dialog.setContentView(R.layout.map_dialog);

dialog = builder.create();

((TextView) dialog.findViewById(R.id.nr)).setText(number);

このコードを使用すると、最後の行でnullポインター例外が発生します。ダイアログがnullではないため、取得しようとしているTextViewが存在しません。
ダイアログコンストラクターを使用する部分のコメントを外すと、ダイアログレイアウトの上のタイトルを除いて、すべて正常に機能します。

4

26 に答える 26

587

FEATURE_NO_TITLEは、次のように、ダイアログを最初から作成するときに機能します。

Dialog dialog = new Dialog(context);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);

ただし、AlertDialogを作成するとき(またはBuilderを使用するとき)は機能しません。これは、タイトルがすでに無効になっていて、内部でカスタムタイトルを使用しているためです。

SDKソースを確認しましたが、回避できないと思います。したがって、上部の間隔を削除する唯一の解決策は、Dialogクラスを直接使用して、最初からIMOでカスタムダイアログを作成することです。

また、たとえばstyles.xmlのように、スタイルを使用してこれを行うことができます。

<style name="FullHeightDialog" parent="android:style/Theme.Dialog">
   <item name="android:windowNoTitle">true</item>
</style>

その後:

Dialog dialog = new Dialog(context, R.style.FullHeightDialog);
于 2010-08-04T16:58:50.090 に答える
213

次を使用して、ダイアログのタイトルを非表示にできます。

dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);


複雑すぎるこの回答の以前のバージョン:

を使用する必要がありますAlertDialog。Android開発者のサイトには、カスタムダイアログに関する適切な説明があります。

非常に簡単に言えば、公式Webサイトから以下にコピーしたようなコードを使用してこれを行います。それはカスタムlayotファイルを取り、それを膨らませ、それにいくつかの基本的なテキストとアイコンを与え、そしてそれを作成します。次に、で表示しalertDialog.show()ます。

AlertDialog.Builder builder;
AlertDialog alertDialog;

Context mContext = getApplicationContext();
LayoutInflater inflater = (LayoutInflater)
        mContext.getSystemService(LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(R.layout.custom_dialog,
        (ViewGroup) findViewById(R.id.layout_root));

TextView text = (TextView) layout.findViewById(R.id.text);
text.setText("Hello, this is a custom dialog!");
ImageView image = (ImageView) layout.findViewById(R.id.image);
image.setImageResource(R.drawable.android);

builder = new AlertDialog.Builder(mContext);
builder.setView(layout);
alertDialog = builder.create();

コメントへの返信:

IDを持つTextViewは、nr膨らませているビューにあると思いますView view = inflater....。もしそうなら、あなたはそれをdialog.findView...作る代わりに、1ビットだけ変更する必要がありますview.findView...。それが終わったら、builder.create()を気にせずに、dialog.show()またはbuilder.show()を使用することを忘れないでください。

于 2010-04-15T09:54:47.707 に答える
68

コードにこの行を追加します

requestWindowFeature(Window.FEATURE_NO_TITLE);  

またはXMLでテーマを使用する

android:theme="@android:style/Theme.NoTitleBar"

XMLは、コードバージョンの場合と同様に、タイトルバーが作成されてから削除されるため、リソースの浪費であるため、より適切な実装になります。

うまくやってみてください、しかしそれは機能していません。android.view.WindowManager $ BadTokenException:ウィンドウを追加できません-ダイアログを表示したい場合、トークンnullはアプリケーション用ではありません。

アラートダイアログタイプをシステムダイアログ(例:TYPE_SYSTEM_OVERLAY)に変更し、これで問題が解決するかどうかを確認します

于 2010-04-15T09:43:07.643 に答える
61

このように使用します:

Dialog dialog = new Dialog(this);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); 

これにより、ダイアログウィンドウからタイトルバーが削除されます。

于 2010-06-16T13:43:54.590 に答える
58

前に以下のコードを使用してくださいsetcontentview:-

    Dialog dialog = new Dialog(this);
    dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); 
    dialog.setContentView(R.layout.custom_dialog);

:上記のコードは、同じ順序と行である必要があります。 setContentView行の前にrequestWindowFeatureある必要があります。

于 2013-02-02T11:02:11.197 に答える
38

あなたはによってタイトルを削除することができます

dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);

ここで、dialogは私のダイアログの名前です。

于 2010-08-03T07:04:08.840 に答える
29

コードで使用する場合はrequestWindowFeature(Window.FEATURE_NO_TITLE); 、それが前に行われることを確認してくださいdialog.setContentView();。そうしないと、アプリケーションがクラッシュします。

于 2011-08-09T23:11:16.453 に答える
10

Custom_Dialog.javaクラスに追加しますrequestWindowFeature(Window.FEATURE_NO_TITLE)

public class Custom_Dialog extends Dialog {

    protected Custom_Dialog(Context context, int theme) {
        super(context, theme);
        // TODO Auto-generated constructor stub
        requestWindowFeature(Window.FEATURE_NO_TITLE); //This line 
    }
}
于 2011-08-08T19:38:30.783 に答える
10

私はこれを行うための3つの方法を見つけました>

1)requestWindowFeatureを使用する

Dialog dialog = new Dialog(this);
dialog.requestWindowFeature(dialog.getWindow().FEATURE_NO_TITLE); 

2)スタイルの使用(style.xml)

<style name="FullHeightDialog" parent="android:style/Theme.Dialog">
   <item name="android:windowNoTitle">true</item>
</style>

Dialog dialog = new Dialog(context, R.style.FullHeightDialog);

3)AndroidManifest.xmlでXMLテーマを使用する

 android:theme="@android:style/Theme.NoTitleBar"
于 2012-11-27T06:28:10.320 に答える
7

oliviergの答えは私のために機能し、カスタムDialogクラスを作成することがあなたが行きたいルートである場合の最良の解決策です。しかし、AlertDialogクラスを使用できないのが気になりました。デフォルトのシステムAlertDialogスタイルを使用できるようにしたかったのです。カスタムダイアログクラスを作成する場合、このスタイルはありません。

そこで、カスタムクラスを作成しなくても機能するソリューション(ハック)を見つけました。既存のビルダーを使用できます。

AlertDialogは、タイトルのプレースホルダーとして、コンテンツビューの上にビューを配置します。ビューを見つけて高さを0に設定すると、スペースがなくなります。

これまで2.3と3.0でテストしましたが、まだすべてのバージョンで機能するとは限りません。

これを行うための2つのヘルパーメソッドを次に示します。

/**
 * Show a Dialog with the extra title/top padding collapsed.
 * 
 * @param customView The custom view that you added to the dialog
 * @param dialog The dialog to display without top spacing
     * @param show Whether or not to call dialog.show() at the end.
 */
public static void showDialogWithNoTopSpace(final View customView, final Dialog dialog, boolean show) {
    // Now we setup a listener to detect as soon as the dialog has shown.
    customView.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {

        @Override
        public void onGlobalLayout() {
            // Check if your view has been laid out yet
            if (customView.getHeight() > 0) {
                // If it has been, we will search the view hierarchy for the view that is responsible for the extra space. 
                LinearLayout dialogLayout = findDialogLinearLayout(customView);
                if (dialogLayout == null) {
                    // Could find it. Unexpected.

                } else {
                    // Found it, now remove the height of the title area
                    View child = dialogLayout.getChildAt(0);
                    if (child != customView) {
                        // remove height
                        LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) child.getLayoutParams();
                        lp.height = 0;
                        child.setLayoutParams(lp);

                    } else {
                        // Could find it. Unexpected.
                    }
                }

                // Done with the listener
                customView.getViewTreeObserver().removeGlobalOnLayoutListener(this);
            }
         }

    });

    // Show the dialog
    if (show)
             dialog.show();
}

/**
 * Searches parents for a LinearLayout
 * 
 * @param view to search the search from
 * @return the first parent view that is a LinearLayout or null if none was found
 */
public static LinearLayout findDialogLinearLayout(View view) {
    ViewParent parent = (ViewParent) view.getParent();
    if (parent != null) {
        if (parent instanceof LinearLayout) {
            // Found it
            return (LinearLayout) parent;

        } else if (parent instanceof View) {
            // Keep looking
            return findDialogLinearLayout((View) parent);

        }
    }

    // Couldn't find it
    return null;
}

使用方法の例を次に示します。

    Dialog dialog = new AlertDialog.Builder(this)
        .setView(yourCustomView)
        .create();

    showDialogWithNoTopSpace(yourCustomView, dialog, true);

これをDialogFragmentで使用している場合は、DialogFragmentのonCreateDialogメソッドをオーバーライドします。次に、上記の最初の例のようにダイアログを作成して返します。唯一の変更点は、ダイアログでshow()を呼び出さないように、3番目のパラメーター(show)としてfalseを渡す必要があることです。DialogFragmentは後でそれを処理します。

例:

@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
    Dialog dialog = new AlertDialog.Builder(getContext())
        .setView(yourCustomView)
        .create();

    showDialogWithNoTopSpace(yourCustomView, dialog, false);
    return dialog;
}

これをさらにテストするときに、必要な追加の調整を加えて更新するようにします。

于 2012-03-31T21:18:39.330 に答える
6

この質問がまだ実際のものかどうかはわかりませんが、私の場合、DialogからDialogFragmentに切り替えたとき、

requestWindowFeature(Window.FEATURE_NO_TITLE);

オプションではありませんでしたが、私は使用できました

setStyle(STYLE_NO_TITLE, 0);

代わりに同じ結果になります。

于 2013-03-12T13:13:38.977 に答える
4

ビルダーを使用して、タイトルを空の文字列に設定します。

    Builder builder = new AlertDialog.Builder(context);
    builder.setTitle("");
...
    builder.show();
于 2011-08-05T17:00:36.297 に答える
3

なしでダイアログを使用するだけの場合setTitle()、タイトルのスペースを削除するのに役立ちますか?

mUSSDDialog = new AlertDialog.Builder(context).setView(dialogView)
.setPositiveButton(R.string.send_button,DialogListener)
.setNegativeButton(R.string.cancel,DialogListener)
.setCancelable(false).create();
于 2012-06-07T06:25:41.953 に答える
3

ダイアログ全体の「重力」属性を「中央」に設定します。次に、その設定を、中央に配置したくないダイアログ内のすべての子コンポーネントにオーバーライドする必要があります。

于 2011-07-03T19:47:45.820 に答える
3
dialog=new Dialog(YourActivity.this, 1);  // to make dialog box full screen with out title.
dialog.setContentView(layoutReference);
dialog.setContentView(R.layout.layoutexample);
于 2012-02-15T12:28:33.660 に答える
3

XMLではテーマを使用します

android:theme="@android:style/Theme.NoTitleBar"
于 2012-02-29T07:55:21.897 に答える
3

今すぐこれを使用できると思います:

AlertDialog dialog = new AlertDialog.Builder(this)
  .setView(view)
  .setTitle("")
  .create()
于 2013-10-02T19:53:31.913 に答える
2
ProgressDialog dialog = ProgressDialog.show(MyActivity.this, "", 
                             "Loading. Please wait...", true);

タイトルのないダイアログを作成します

于 2012-03-14T02:45:15.083 に答える
2
public static AlertDialog showAlertDialogWithoutTitle(Context context,String msg) 
     {
      AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(context);
      alertDialogBuilder.setMessage(msg).setCancelable(false)
        .setPositiveButton("OK", new DialogInterface.OnClickListener() {
         public void onClick(DialogInterface dialog, int id) {

         }
        });

       return alertDialogBuilder.create(); 
     }
于 2015-01-09T12:10:24.043 に答える
2

AlertDialogを使用している間、使用しないsetTitle()とタイトルが消えます

于 2015-08-04T07:09:07.813 に答える
1

たくさんのハッキングの後、私はこれを機能させました:

            Window window = dialog.getWindow();
            View view = window.getDecorView();
            final int topPanelId = getResources().getIdentifier( "topPanel", "id", "android" );
            LinearLayout topPanel = (LinearLayout) view.findViewById(topPanelId);
            topPanel.setVisibility(View.GONE);
于 2012-12-07T22:37:10.353 に答える
1

次のようにクラスAlertDialogから拡張する新しいクラスを定義することにより、を使用せずにこれを行うことができます。Dialog

public class myDialog extends Dialog {
    public myDialog(Context context) {
        super(context);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
    }
}
于 2014-09-08T17:00:58.407 に答える
1

タイトルを非表示にするためにできることは次のAlertBuilderとおりです。

TextView title = new TextView(this);
title.setVisibility(View.GONE);
builder.setCustomTitle(title);
于 2015-06-27T04:48:27.140 に答える
1

これを使って

    Dialog dialog = new Dialog(getActivity());
    dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
    dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
    dialog.setCancelable(true);
    dialog.setContentView(R.layout.image_show_dialog_layout);
于 2017-01-31T14:17:49.347 に答える
1

dialog_custom .requestWindowFeature(Window.FEATURE_NO_TITLE);

これにより、cutsomダイアログからタイトルが削除されます。

コンテンツを追加する前にこれらの行を追加することに注意してください。

     dialog_custom = Dialog(activity!!)
    dialog_custom.requestWindowFeature(Window.FEATURE_NO_TITLE)
    dialog_custom.setContentView(R.layout.select_vehicle_type)
    dialog_custom.setCanceledOnTouchOutside(false)
    dialog_custom.setCancelable(true)
于 2019-03-01T11:36:46.670 に答える
0

requestWindowFeature(Window.FEATURE_NO_TITLE);を試してみます。
しかし、私のために働いていません、あなたが私のようであるならば、これをしてください:

ダイアログにテーマを渡すと、タイトルバーが削除される可能性があります。

    <style name="NoTitleDialog" parent="Theme.AppCompat.Dialog">
   <item name="android:windowNoTitle">true</item>
    </style>

テーマをダイアログに渡します。

ダイアログdialog=new Dialog(this、R.style.NoTitleDialog);

それはとても簡単です

于 2022-01-31T14:30:16.040 に答える