タイトルなしでDialogFragmentを作成する方法は?


358

アプリに関するヘルプメッセージを表示するDialogFragmentを作成しています。それ以外はすべて正常に機能します。ウィンドウの上部にDialogFragmentを表示する黒いストライプがあり、タイトルとして予約されていると思いますが、これは使用したくないものです。

私のカスタムDialogFragmentは白い背景を使用するため、これは特に痛みを伴います。

これをよりグラフィカルな方法で示します。

ここに画像の説明を入力してください

これで、DialogFragmentのXMLコードは次のようになります。

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <LinearLayout
        android:id="@+id/holding" 
        android:orientation="vertical" 
        android:layout_width="fill_parent" 
        android:layout_height="fill_parent"
        android:background="@drawable/dialog_fragment_bg"
        >
        <!-- Usamos un LinearLayout para que la imagen y el texto esten bien alineados -->
        <LinearLayout
            android:id="@+id/confirmationToast" 
            android:orientation="horizontal" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content"
            >

            <TextView android:id="@+id/confirmationToastText" 
            android:layout_width="wrap_content"
            android:layout_height="fill_parent" 
            android:text="@string/help_dialog_fragment"
            android:textColor="#AE0000"
            android:gravity="center_vertical"
            />

        </LinearLayout>
        <LinearLayout
            android:id="@+id/confirmationButtonLL" 
            android:orientation="horizontal" 
            android:layout_width="fill_parent" 
            android:layout_height="fill_parent"
            android:gravity="center_horizontal"
            >    
            <Button android:id="@+id/confirmationDialogButton"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:layout_marginBottom="60dp"
                android:background="@drawable/ok_button">
            </Button>
        </LinearLayout>
    </LinearLayout>
</ScrollView>

そして、DialogFragmentを実装するクラスのコード:

public class HelpDialog extends DialogFragment {

    public HelpDialog() {
        // Empty constructor required for DialogFragment
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        //Inflate the XML view for the help dialog fragment
        View view = inflater.inflate(R.layout.help_dialog_fragment, container);
        TextView text = (TextView)view.findViewById(R.id.confirmationToastText);
        text.setText(Html.fromHtml(getString(R.string.help_dialog_fragment)));
        //get the OK button and add a Listener
        ((Button) view.findViewById(R.id.confirmationDialogButton)).setOnClickListener(new OnClickListener() {
            public void onClick(View v) {
                 // When button is clicked, call up to owning activity.
                HelpDialog.this.dismiss();
             }
         });
        return view;
    }

}

そして、メインアクティビティの作成プロセス:

/**
 * Shows the HelpDialog Fragment
 */
private void showHelpDialog() {
    android.support.v4.app.FragmentManager fm = getSupportFragmentManager();
    HelpDialog helpDialog = new HelpDialog();
    helpDialog.show(fm, "fragment_help");
}

ダイアログに関連するこの答えがAndroidにも当てはまるかどうかは本当にわかりません。タイトルなしでダイアログを作成するにはどうすればよいですか。

このタイトル領域を取り除くにはどうすればよいですか?


このshowHelpDialogメソッドはFragmentActivityまたはActivityクラスから呼び出されますか?
Sjk 2013

80
+1 ...質問を読んで笑ったのはこれが初めてだと思いますlol
Jason Crosby

1
ユーモアのセンスのための+1。問題のグラフィカルな説明は、まさにこの問題について私がどう感じたかでした!
Luis Artola 2016

回答:


589

このコード行を HelpDialog.onCreateView(...)

getDialog().getWindow().requestFeature(Window.FEATURE_NO_TITLE);

このように、タイトルのないウィンドウを取得することを明示的に要求しています:)


編集

通り@DataGraham@Blundell下のコメントに指摘し、それは、タイトルのないウィンドウのための要求を追加する方が安全だonCreateDialog()のではなく、方法onCreateView()。これにより、フラグメントをとして使用していないときにNPEが煩わしくならないようにすることができますDialog

@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
  Dialog dialog = super.onCreateDialog(savedInstanceState);

  // request a window without the title
  dialog.getWindow().requestFeature(Window.FEATURE_NO_TITLE);
  return dialog;
}

61
もちろん、便利な方法getDialog().requestWindowFeature(Window.FEATURE_NO_TITLE)を使用することもできます...
a.bertucci

8
フラグメントがダイアログとして表示されない場合は、代わりにonCreateDialogでこれを実行できます。
DataGraham 2013

2
@ a.bertucciあなたは最高です!ただし、そのフラグメントを通常のフラグメントとして追加したgetDialog場合、NPEが返されます
Blundell

4
これにより、ダイアログの幅が狭くなります。この問題の回避策はありますか?
時計屋2014

2
@clocksmithは、android:layout_widthダイアログのレイアウトのルートビューの属性をwrap_content
ataulm 2014

78

ダイアログフラグメントにはsetStyleメソッドがあり、ビュー作成Java Docの前に呼び出す必要があります。ダイアログのスタイルも同じ方法で設定できます

public static MyDialogFragment newInstance() {
        MyDialogFragment mDialogFragment = new MyDialogFragment();
        //Set Arguments here if needed for dialog auto recreation on screen rotation
        mDialogFragment.setStyle(DialogFragment.STYLE_NO_TITLE, 0);
        return mDialogFragment;
}

3
最大、私はsetStype(STYLE_NO_TITLE、0)を使おうとしました。しかし、その結果、ダイアログは幅の1/4サイズにカットされるため、ダイアログ内のメッセージはすべて表示されません。
vliux 2013年

1
Androidのソースを見ると、2つの方法は実際にはコードでも同じだと思います。私はそれがあまりにも1/4のサイズにカットのWHERE同じ問題を抱えている:(まだそれを解決していないことがあります。。
abhishekmukherg

1
これはそれを行うための最良の方法です。
サイファー2014

1
@Samそうです、ウィンドウスタイルはonSaveInstanceStateに永続化され、後で復元されます。私は今でも、一般的にonCreate()ですべてを初期化することをお勧めします。
BladeCoder 2015

1
レイアウトのルートビューの直接の子はすべて、match_parantの幅にする必要があります。次に、通常の幅のダイアログが表示されます。
nicolausYes 2016

22
FragmentManager manager = getSupportFragmentManager();
SettingsDialog sd = new SettingsDialog();
sd.setStyle(DialogFragment.STYLE_NO_TITLE, 0);
sd.show(manager, "settings_dialog");

1
sd.setStyle(DialogFragment.STYLE_NORMAL、android.R.style.Theme_Holo_Dialog_NoActionBar)私は言うでしょう
Androider

非常に多くの試練の後、OMGはこれが機能した唯一の作品です。
Alex

16

簡単な方法を試してください

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setStyle(STYLE_NO_TITLE, 0);
}

Samsung Galaxy S4で正常に動作します。
CoolMind 2016年

11
public class LoginDialog extends DialogFragment {   
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.login_dialog, null);
        getDialog().getWindow().requestFeature(Window.FEATURE_NO_TITLE);
        return view;
    }   
}

10

スタイルをTheme_Holo_Dialog_NoActionBarに設定します。

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setStyle(STYLE_NORMAL, android.R.style.Theme_Holo_Dialog_NoActionBar);
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.