自定义主题会干扰快餐栏背景颜色

时间:2015-06-26 13:07:17

标签: android material-design android-design-library androiddesignsupport android-snackbar

尝试新的设计支持库,我添加了一个小吃店;但与其主背景不同,文本区域未使用默认值#323232着色。相反,它看起来like this。它似乎取自android:background中自定义主题中定义的styles.xml值的颜色,如下所示:

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    ...
    <item name="android:background">#4f4f5e</item>
    ...
</style>

如果我尝试使用

强行着色
View snackbarView = snackbar.getView(); 
snackbarView.setBackgroundColor(Color.YELLOW);

它只影响主背景like this,文字背景仍会被自定义主题着色。有没有办法保持我的自定义主题,并有一个标准的小吃吧?谢谢!

10 个答案:

答案 0 :(得分:18)

要更改Snackbar的背景颜色,您可以从代码中执行以下操作:

Snackbar snack = Snackbar.make(...);
ViewGroup group = (ViewGroup) snack.getView();
group.setBackgroundColor(ContextCompat.getColor(getContext(), R.color.red));
snack.show();

您可以使用Snackbar的默认颜色代替红色:#323232

答案 1 :(得分:7)

.setBackgroundColor可让您更改小吃栏的背景颜色

msnackBar.setBackgroundColor(Color.parseColor("#009688"));

 msnackBar.setBackgroundColor(getResources().getColor(R.color.BLUE)););

Here是使用设计支持库使用snackbar的完整教程。

答案 2 :(得分:7)

小吃店包含一个TextView,所以你需要改变两者的背景颜色,就像你已经做的那样改变小吃吧,然后像这样改变TextView:

View snackbarView = snackbar.getView(); 
TextView textView = (TextView)snackbarView.findViewById(android.support.design.R.id.snackbar_text); 
textView.setBackgroundColor(Color.YELLOW);

答案 3 :(得分:2)

以下是完整的示例:

Snackbar snack = Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
                        .setAction("Action", null);
                ViewGroup group = (ViewGroup) snack.getView();
                group.setBackgroundColor(ContextCompat.getColor(MainActivity.this, R.color.blue));
                snack.show();

MainActivity.this 替换为您当前的活动或getAppContext()

答案 4 :(得分:2)

您可以简单地创建自己的Snackbar类并模拟Snackbar的make方法。这样做,你只需要使用这个类而不是android的snackbar小部件。

<强> Snackbar.class

import android.graphics.Color;
import android.support.annotation.IntDef;
import android.support.annotation.IntRange;
import android.support.annotation.NonNull;
import android.support.design.widget.CoordinatorLayout;
import android.support.design.widget.FloatingActionButton;
import android.view.View;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

public class Snackbar {

    /** Snackbar's lengths **/
    public static final int LENGTH_SHORT = android.support.design.widget.Snackbar.LENGTH_SHORT;
    public static final int LENGTH_LONG = android.support.design.widget.Snackbar.LENGTH_LONG;
    public static final int LENGTH_INDEFINITE = android.support.design.widget.Snackbar.LENGTH_INDEFINITE;

    @NonNull
    public static android.support.design.widget.Snackbar make(@NonNull View view, @NonNull CharSequence text,
                                                              @Duration int duration) {
        android.support.design.widget.Snackbar snackbar = android.support.design.widget.Snackbar.make(view, text, duration);
        // TODO: This is where you have to customize your snackbar
        snackbar.getView().setBackgroundColor(Color.RED);
        return snackbar;
    }

    @NonNull
    public static android.support.design.widget.Snackbar make(@NonNull View view, @StringRes int resId, @Duration int duration) {
        return make(view, view.getResources().getText(resId), duration);
    }

    // Optional
    @IntDef({LENGTH_INDEFINITE, LENGTH_SHORT, LENGTH_LONG})
    @IntRange(from = 1)
    @Retention(RetentionPolicy.SOURCE)
    public @interface Duration {}

}

使用:

// WARNING: Make sure you're using your snackbar's package
import com.mypackage.custom_views.Snackbar;

public class MyActivity extends Activity {
    ...
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        ...
        Snackbar.make(view, R.string.my_msg, Snackbar.LENGTH_LONG).show();
    }
}

希望这有帮助!

答案 5 :(得分:1)

设置样式属性android:background时会发生此效果。

删除它当然会影响应用程序中的所有布局,但小吃栏将被修复。

答案 6 :(得分:1)

您可以使用此库:https://github.com/SandroMachado/restaurant

new Restaurant(MainActivity.this, "Snackbar with custom background and text color", Snackbar.LENGTH_LONG)
    .setBackgroundColor(Color.GRAY)
    .show();

免责声明:我制作了图书馆。

答案 7 :(得分:1)

这就是我使用自定义零食栏的方式

  Snackbar snackbar_network = Snackbar.make(rLayout, "Your Message", Snackbar.LENGTH_SHORT)
                        .setAction("EXIT", new View.OnClickListener() {
                            @Override
                            public void onClick(final View v) {


                                  finish();

                            }
                        });
  

操作文字颜色

 snackbar_network.setActionTextColor(Color.RED);

操作消息文本颜色

  final View sbView = snackbar_network.getView();
                final TextView tv = (TextView) sbView.findViewById(android.support.design.R.id.snackbar_text);
                tv.setTextColor(Color.YELLOW);

设置小吃背景

sbView.setBackgroundColor(ContextCompat.getColor(MapsActivity.this, R.color.black));

        snackbar_network.show();

答案 8 :(得分:0)

以这种方式为我工作:

LinearLayout linearLayout = (LinearLayout) findViewById(R.id.ll);
        Snackbar snackbar = Snackbar.make(lineatLayout, "TEXT", Snackbar.LENGTH_LONG);
        ViewGroup group = (ViewGroup) snackbar.getView();
        group.setBackgroundColor(ContextCompat.getColor(getApplicationContext(), R.color.yourColor));
        TextView textView = (TextView) group.findViewById(android.support.design.R.id.snackbar_text);
        textView.setTextColor(ContextCompat.getColor(this, R.color.yor collor));

        snackbar.show();

答案 9 :(得分:0)

我也遇到过类似的问题。遗憾的是没有解决方案适合我,因此我编写了自己的解决方案,我也为父视图设置了背景颜色。

    TextView snackbarTextView = snackbar.getView().findViewById(android.support.design.R.id.snackbar_text);
    snackbarTextView.setBackgroundColor(ContextCompat.getColor(getActivity(), R.color.colorPrimary));

    ViewParent parentView = snackbarTextView.getParent();
    if (parentView instanceof View) {
        ((View) parentView).setBackgroundColor(ContextCompat.getColor(getActivity(), R.color.colorPrimary));
    }

    View snackbarView = snackbar.getView();
    snackbarView.setBackgroundColor(ContextCompat.getColor(getActivity(), R.color.colorPrimary));

    snackbar.show();