ThemeableSwitchPreference.java 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. * Nextcloud Android client application
  3. *
  4. * @author Tobias Kaminsky
  5. * Copyright (C) 2017 Tobias Kaminsky
  6. * Copyright (C) 2017 Nextcloud GmbH.
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU Affero General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU Affero General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Affero General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. */
  21. package com.owncloud.android.ui;
  22. import android.content.Context;
  23. import android.content.res.ColorStateList;
  24. import android.graphics.Color;
  25. import android.os.Build;
  26. import android.preference.SwitchPreference;
  27. import android.support.annotation.RequiresApi;
  28. import android.support.v4.graphics.drawable.DrawableCompat;
  29. import android.util.AttributeSet;
  30. import android.view.View;
  31. import android.view.ViewGroup;
  32. import android.widget.Switch;
  33. import com.owncloud.android.utils.ThemeUtils;
  34. /**
  35. * Themeable switch preference
  36. */
  37. public class ThemeableSwitchPreference extends SwitchPreference {
  38. public ThemeableSwitchPreference(Context context) {
  39. super(context);
  40. }
  41. public ThemeableSwitchPreference(Context context, AttributeSet attrs, int defStyleAttr) {
  42. super(context, attrs, defStyleAttr);
  43. }
  44. public ThemeableSwitchPreference(Context context, AttributeSet attrs) {
  45. super(context, attrs);
  46. }
  47. @Override
  48. protected void onBindView(View view) {
  49. super.onBindView(view);
  50. if (view instanceof ViewGroup && Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
  51. findSwitch((ViewGroup) view);
  52. }
  53. }
  54. @RequiresApi(Build.VERSION_CODES.JELLY_BEAN)
  55. private void findSwitch(ViewGroup viewGroup) {
  56. for (int i = 0; i < viewGroup.getChildCount(); i++) {
  57. View child = viewGroup.getChildAt(i);
  58. if (child instanceof Switch) {
  59. Switch switchView = (Switch) child;
  60. int color = ThemeUtils.primaryAccentColor();
  61. int trackColor = Color.argb(77, Color.red(color), Color.green(color), Color.blue(color));
  62. // setting the thumb color
  63. DrawableCompat.setTintList(switchView.getThumbDrawable(), new ColorStateList(
  64. new int[][]{new int[]{android.R.attr.state_checked}, new int[]{}},
  65. new int[]{color, Color.WHITE}));
  66. // setting the track color
  67. DrawableCompat.setTintList(switchView.getTrackDrawable(), new ColorStateList(
  68. new int[][]{new int[]{android.R.attr.state_checked}, new int[]{}},
  69. new int[]{trackColor, Color.parseColor("#4D000000")}));
  70. break;
  71. } else if (child instanceof ViewGroup) {
  72. findSwitch((ViewGroup) child);
  73. }
  74. }
  75. }
  76. }