更改快餐栏中操作按钮的背景颜色

时间:2016-09-27 06:51:59

标签: android background-color android-snackbar

如何更改小吃栏中操作按钮的背景颜色或使其消失(灰色背景)?

enter image description here

我使用此代码:

        Snackbar mysnack = Snackbar.make(main_layout, getResources().getString(R.string.snack_1), 5000);
            View view = mysnack.getView();
            TextView tv = (TextView) view.findViewById(android.support.design.R.id.snackbar_text);
            tv.setTextColor(getResources().getColor(R.color.text_light));
            mysnack.setActionTextColor(getResources().getColor(R.color.text_light));
            mysnack.setAction("RATE", new View.OnClickListener() {
                @Override
                public void onClick(View view) {
                    Uri uri = Uri.parse(getResources().getString(R.string.snack_url));
                    Intent intent = new Intent(Intent.ACTION_VIEW, uri);
                    startActivity(intent);
                }
            });
            TypedValue typedValue = new TypedValue();
            getTheme().resolveAttribute(R.attr.colorPrimaryDark, typedValue, true);
            final int color = typedValue.data;
            mysnack.getView().setBackgroundColor(color);
            mysnack.show();

我的问题不重复。我要求背景颜色而不是文字颜色。首先我们阅读,然后我们理解,然后我们思考,然后我们决定写一个人的问题是重复的。

5 个答案:

答案 0 :(得分:2)

我有同样的问题。发现这可能是新的Material主题的错误。 我的应用程序的主题是:

<style name="AppTheme" parent="@style/Theme.MaterialComponents.Light.NoActionBar">

如果我将其更改为AppCompat零食按钮的灰色背景将消失。最终,我发现这是因为该错误。

我的解决方案是(我需要Material主题,不能简单地将其更改为AppCompat): 找到小吃的按钮ID。它是“ @ id / snackbar_action”:

val snackButton: Button = yourSnackbar.getView().findViewById(R.id.snackbar_action)

,然后将其背景更改为null:

snackButton.setBackground(null)

答案 1 :(得分:1)

此代码段可以帮助您:

Snackbar snackbar = Snackbar.make(
                    coordinatorLayout,
                    "Snackbar: floatingActionButton1 (normal) clicked",
                    Snackbar.LENGTH_LONG);
            snackbar.setActionTextColor(Color.RED);
            View snackbarView = snackbar.getView();
            snackbarView.setBackgroundColor(Color.WHITE);
            TextView textView = (TextView) snackbarView.findViewById(android.support.design.R.id.snackbar_text);
            textView.setTextColor(Color.BLUE);
  

参考Click Here

答案 2 :(得分:0)

对于Xamarin,您可以尝试这个

 snackbar.View.SetBackgroundColor(Android.Graphics.Color.ParseColor("#32CD32"));

答案 3 :(得分:0)

如果要更改操作按钮的背景色。

View sbView = snackbar.getView();
Button button=
(Button) sbView.findViewById(com.google.android.material.R.id.snackbar_action);
button.setBackgroundColor(getResources().getColor(R.color.white));

如果要更改操作按钮的文本颜色。

snackbar.setActionTextColor(getResources().getColor(R.color.colorAccent));

答案 4 :(得分:0)

通过Material Components Library,您可以在应用程序主题中使用 snackbarButtonStyle 属性。
像这样:

<style name="AppTheme" parent="Theme.MaterialComponents.DayNight">
    <!-- Style to use for action button within a Snackbar in this theme. -->
    <item name="snackbarButtonStyle">@style/Widget.App.Button.TextButton.Snackbar</item>
</style>


<style name="Widget.App.Button.TextButton.Snackbar" parent="Widget.MaterialComponents.Button.TextButton.Snackbar">
    <item name="backgroundTint">@color/colorSecondary</item>
</style>

enter image description here