web-dev-qa-db-ja.com

マテリアルデザインのスナックバーをダイアログに表示できますか?

Androidアプリケーションを開発しています。マテリアルデザインのスナックバーをダイアログに表示したいのですが、可能ですか?はいの場合はどうすればよいですか?

私を助けてください。

ありがとう。

11
Ganpat Kaliya

間違いなく可能です。ダイアログのビューをSnackBarに渡すだけです。

    AlertDialog.Builder mAlertDialogBuilder = new AlertDialog.Builder(this);
    LayoutInflater inflater = this.getLayoutInflater();
    // inflate the custom dialog view
    final View mDialogView = inflater.inflate(R.layout.dialog_layout, null);
    // set the View for the AlertDialog
    mAlertDialogBuilder.setView(mDialogView);

    Button btn = (Button) mDialogView.findViewById(R.id.dialog_btn);
    btn.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            // Pass the mDialogView to the SnackBar
            Snackbar
                    .make(mDialogView, "SnackBar in Dialog", Snackbar.LENGTH_LONG)
                    .show();
        }
    });
    AlertDialog alertDialog = mAlertDialogBuilder.create();
    alertDialog.show();

結果

picture showing result

:ルートとしてCoordinatorLayoutを使用する必要はありません。私の例では、単にLinearLayoutをルートとして使用しました。

15
reVerse

はい、できます。

Snackbar内にDialogを表示するには、カスタムViewを作成します。詳細については、こちらをご覧ください: ダイアログ/カスタムレイアウトの作成

次に、Snackbarを表示するためにSnackbar.make((dialogView, "text", duration))を呼び出します。ここでdialogViewはカスタムビューです。

5
Ilya Tretyakov

Dialogを使用している場合:

dialog_share = new Dialog(MainScreen.this, R.style.DialogTheme);
dialog_share.requestWindowFeature(Window.FEATURE_NO_TITLE);
LayoutInflater inflater = this.getLayoutInflater();
mDialogView = inflater.inflate(R.layout.dialog_share, null);
dialog_share.setContentView(mDialogView);
dialog_share.getWindow().setBackgroundDrawableResource(R.color.translucent_black);
dialog_share.show();

public void ShowSnackBarNoInternetOverDialog() {
        Snackbar snackbar = Snackbar.make(mDialogView, getString(R.string.checkinternet), Snackbar.LENGTH_LONG);
        snackbar.setActionTextColor(Color.CYAN);
        snackbar.setAction("OK", new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                //Toast.makeText(MainScreen.this, "snackbar OK clicked", Toast.LENGTH_LONG).show();
            }
        });
        snackbar.show();
    }
1
erdomester