/** * Sets the text color of the action specified in * {@link #setAction(CharSequence, View.OnClickListener)}. */ @NonNull public Snackbar setActionTextColor(@ColorIntint color){ final TextView tv = mView.getActionView(); tv.setTextColor(color); returnthis; }
但是没有提供修改mMessageView颜色的方法,而且是私有的 可是呢,
1 2 3 4 5 6 7
/** * Returns the {@link Snackbar}'s view. */ @NonNull public View getView(){ return mView; }