108

スナックバーのレイアウトをカスタムビューに変更する方法はありますか?

これで黒になり、背景色を変更できます。しかし、新しいレイアウトを膨らませてそれをsnackBarsの背景にする正しい方法がわかりませんか?

ありがとう...

4

12 に答える 12

159

Snackbar では、カスタム レイアウトを設定できません。ただし、Primoz990 が提案したように、Snackbar のビューを取得できます。getView 関数は Snackbar.SnackbarLayout を返します。これは、子が TextView と Button である水平方向の LinearLayout オブジェクトです。独自のビューを Snackbar に追加するには、TextView を非表示にして、ビューを Snackbar.SnackbarLayout に追加するだけです。

// Create the Snackbar
Snackbar snackbar = Snackbar.make(containerLayout, "", Snackbar.LENGTH_LONG);
// Get the Snackbar's layout view
Snackbar.SnackbarLayout layout = (Snackbar.SnackbarLayout) snackbar.getView();
// Hide the text
TextView textView = (TextView) layout.findViewById(android.support.design.R.id.snackbar_text);
textView.setVisibility(View.INVISIBLE);

// Inflate our custom view
View snackView = mInflater.inflate(R.layout.my_snackbar, null);
// Configure the view
ImageView imageView = (ImageView) snackView.findViewById(R.id.image);
imageView.setImageBitmap(image);
TextView textViewTop = (TextView) snackView.findViewById(R.id.text);
textViewTop.setText(text);
textViewTop.setTextColor(Color.WHITE);

//If the view is not covering the whole snackbar layout, add this line
layout.setPadding(0,0,0,0);

// Add the view to the Snackbar's layout
layout.addView(snackView, 0);
// Show the Snackbar
snackbar.show();
于 2015-10-30T17:01:52.010 に答える