Androidアプリケーションを開発しています。マテリアルデザインのスナックバーをダイアログに表示したいのですが、可能ですか?はいの場合はどうすればよいですか?
私を助けてください。
ありがとう。
間違いなく可能です。ダイアログのビューを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();
結果
注:ルートとしてCoordinatorLayout
を使用する必要はありません。私の例では、単にLinearLayoutをルートとして使用しました。
はい、できます。
Snackbar
内にDialog
を表示するには、カスタムView
を作成します。詳細については、こちらをご覧ください: ダイアログ/カスタムレイアウトの作成
次に、Snackbar
を表示するためにSnackbar.make((dialogView, "text", duration))
を呼び出します。ここでdialogView
はカスタムビューです。
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();
}