(Snackbar snackbar)
| 2246 | } |
| 2247 | |
| 2248 | static Snackbar setSnackbarOptions(Snackbar snackbar) { |
| 2249 | snackbar.setGestureInsetBottomIgnored(true); |
| 2250 | int colorAccent = Helper.resolveColor(snackbar.getContext(), android.R.attr.colorAccent); |
| 2251 | double lum = ColorUtils.calculateLuminance(colorAccent); |
| 2252 | if (lum < MIN_SNACKBAR_LUMINANCE) { |
| 2253 | colorAccent = ColorUtils.blendARGB(colorAccent, Color.WHITE, MIN_SNACKBAR_LUMINANCE); |
| 2254 | snackbar.setActionTextColor(colorAccent); |
| 2255 | } |
| 2256 | return snackbar; |
| 2257 | } |
| 2258 | |
| 2259 | static void setSnackbarLines(Snackbar snackbar, int lines) { |
| 2260 | View sv = snackbar.getView(); |
no test coverage detected