ThemeUtils.java 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405
  1. /*
  2. * Nextcloud Android client application
  3. *
  4. * @author Tobias Kaminsky
  5. * @author Andy Scherzinger
  6. * Copyright (C) 2017 Tobias Kaminsky
  7. * Copyright (C) 2017 Andy Scherzinger
  8. * Copyright (C) 2017 Nextcloud GmbH.
  9. *
  10. * This program is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License as published by
  12. * the Free Software Foundation, either version 3 of the License, or
  13. * at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public License
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. */
  23. package com.owncloud.android.utils;
  24. import android.accounts.Account;
  25. import android.app.Activity;
  26. import android.content.Context;
  27. import android.content.res.ColorStateList;
  28. import android.graphics.Color;
  29. import android.graphics.PorterDuff;
  30. import android.graphics.drawable.Drawable;
  31. import android.os.Build;
  32. import android.support.annotation.ColorInt;
  33. import android.support.annotation.DrawableRes;
  34. import android.support.design.widget.FloatingActionButton;
  35. import android.support.design.widget.Snackbar;
  36. import android.support.v4.app.FragmentActivity;
  37. import android.support.v4.content.ContextCompat;
  38. import android.support.v4.content.res.ResourcesCompat;
  39. import android.support.v4.graphics.ColorUtils;
  40. import android.support.v4.graphics.drawable.DrawableCompat;
  41. import android.support.v4.widget.CompoundButtonCompat;
  42. import android.support.v7.app.ActionBar;
  43. import android.support.v7.widget.AppCompatCheckBox;
  44. import android.support.v7.widget.SwitchCompat;
  45. import android.text.Html;
  46. import android.text.Spanned;
  47. import android.widget.ImageButton;
  48. import android.widget.ProgressBar;
  49. import android.widget.SeekBar;
  50. import com.owncloud.android.MainApp;
  51. import com.owncloud.android.R;
  52. import com.owncloud.android.authentication.AccountUtils;
  53. import com.owncloud.android.datamodel.FileDataStorageManager;
  54. import com.owncloud.android.lib.resources.status.OCCapability;
  55. import com.owncloud.android.ui.activity.ToolbarActivity;
  56. /**
  57. * Utility class with methods for client side theming.
  58. */
  59. public class ThemeUtils {
  60. public static int primaryAccentColor(Context context) {
  61. OCCapability capability = getCapability(context);
  62. try {
  63. float adjust;
  64. if (darkTheme(context)) {
  65. adjust = +0.1f;
  66. } else {
  67. adjust = -0.1f;
  68. }
  69. return adjustLightness(adjust, Color.parseColor(capability.getServerColor()), 0.35f);
  70. } catch (Exception e) {
  71. return context.getResources().getColor(R.color.color_accent);
  72. }
  73. }
  74. public static int primaryDarkColor(Context context) {
  75. return primaryDarkColor(null, context);
  76. }
  77. public static int primaryDarkColor(Account account, Context context) {
  78. OCCapability capability = getCapability(account, context);
  79. try {
  80. return adjustLightness(-0.2f, Color.parseColor(capability.getServerColor()), -1f);
  81. } catch (Exception e) {
  82. return context.getResources().getColor(R.color.primary_dark);
  83. }
  84. }
  85. public static int primaryColor(Context context) {
  86. return primaryColor(null, context);
  87. }
  88. public static int primaryColor(Account account, Context context) {
  89. OCCapability capability = getCapability(account, context);
  90. try {
  91. return Color.parseColor(capability.getServerColor());
  92. } catch (Exception e) {
  93. return context.getResources().getColor(R.color.primary);
  94. }
  95. }
  96. public static int elementColor(Context context) {
  97. return elementColor(null, context);
  98. }
  99. @NextcloudServer(max = 12)
  100. public static int elementColor(Account account, Context context) {
  101. OCCapability capability = getCapability(account, context);
  102. try {
  103. return Color.parseColor(capability.getServerElementColor());
  104. } catch (Exception e) {
  105. int primaryColor;
  106. try {
  107. primaryColor = Color.parseColor(capability.getServerColor());
  108. } catch (Exception e1) {
  109. primaryColor = context.getResources().getColor(R.color.primary);
  110. }
  111. float[] hsl = colorToHSL(primaryColor);
  112. if (hsl[2] > 0.8) {
  113. return context.getResources().getColor(R.color.elementFallbackColor);
  114. } else {
  115. return primaryColor;
  116. }
  117. }
  118. }
  119. public static boolean themingEnabled(Context context) {
  120. return getCapability(context).getServerColor() != null && !getCapability(context).getServerColor().isEmpty();
  121. }
  122. /**
  123. * @return int font color to use
  124. * adapted from https://github.com/nextcloud/server/blob/master/apps/theming/lib/Util.php#L90-L102
  125. */
  126. public static int fontColor(Context context) {
  127. try {
  128. return Color.parseColor(getCapability(context).getServerTextColor());
  129. } catch (Exception e) {
  130. if (darkTheme(context)) {
  131. return Color.WHITE;
  132. } else {
  133. return Color.BLACK;
  134. }
  135. }
  136. }
  137. /**
  138. * Tests if dark color is set
  139. * @return true if dark theme -> e.g.use light font color, darker accent color
  140. */
  141. public static boolean darkTheme(Context context) {
  142. int primaryColor = primaryColor(context);
  143. float[] hsl = colorToHSL(primaryColor);
  144. return hsl[2] <= 0.55;
  145. }
  146. /**
  147. * Set color of title to white/black depending on background color
  148. *
  149. * @param actionBar actionBar to be used
  150. * @param title title to be shown
  151. */
  152. public static void setColoredTitle(ActionBar actionBar, String title, Context context) {
  153. if (actionBar != null) {
  154. if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.KITKAT) {
  155. actionBar.setTitle(title);
  156. } else {
  157. String colorHex = colorToHexString(fontColor(context));
  158. actionBar.setTitle(Html.fromHtml("<font color='" + colorHex + "'>" + title + "</font>"));
  159. }
  160. }
  161. }
  162. public static Spanned getColoredTitle(String title, int color) {
  163. String colorHex = colorToHexString(color);
  164. return Html.fromHtml("<font color='" + colorHex + "'>" + title + "</font>");
  165. }
  166. /**
  167. * Set color of title to white/black depending on background color
  168. *
  169. * @param actionBar actionBar to be used
  170. * @param titleId title to be shown
  171. */
  172. public static void setColoredTitle(ActionBar actionBar, int titleId, Context context) {
  173. if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.KITKAT) {
  174. actionBar.setTitle(titleId);
  175. } else {
  176. String colorHex = colorToHexString(fontColor(context));
  177. String title = context.getString(titleId);
  178. actionBar.setTitle(Html.fromHtml("<font color='" + colorHex + "'>" + title + "</font>"));
  179. }
  180. }
  181. public static String getDefaultDisplayNameForRootFolder(Context context) {
  182. OCCapability capability = getCapability(context);
  183. if (capability.getServerName() == null || capability.getServerName().isEmpty()) {
  184. return MainApp.getAppContext().getResources().getString(R.string.default_display_name_for_root_folder);
  185. } else {
  186. return capability.getServerName();
  187. }
  188. }
  189. public static void setStatusBarColor(Activity activity, @ColorInt int color) {
  190. if (activity != null && Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
  191. activity.getWindow().setStatusBarColor(color);
  192. }
  193. }
  194. /**
  195. * Adjust lightness of given color
  196. *
  197. * @param lightnessDelta values -1..+1
  198. * @param color
  199. * @param threshold 0..1 as maximum value, -1 to disable
  200. * @return color adjusted by lightness
  201. */
  202. public static int adjustLightness(float lightnessDelta, int color, float threshold) {
  203. float[] hsl = colorToHSL(color);
  204. if (threshold == -1f) {
  205. hsl[2] += lightnessDelta;
  206. } else {
  207. hsl[2] = Math.min(hsl[2] + lightnessDelta, threshold);
  208. }
  209. return ColorUtils.HSLToColor(hsl);
  210. }
  211. private static float[] colorToHSL(int color) {
  212. float[] hsl = new float[3];
  213. ColorUtils.RGBToHSL(Color.red(color), Color.green(color), Color.blue(color), hsl);
  214. return hsl;
  215. }
  216. /**
  217. * sets the tinting of the given ImageButton's icon to color_accent.
  218. *
  219. * @param imageButton the image button who's icon should be colored
  220. */
  221. public static void colorImageButton(ImageButton imageButton, @ColorInt int color) {
  222. if (imageButton != null) {
  223. imageButton.setColorFilter(color, PorterDuff.Mode.SRC_ATOP);
  224. }
  225. }
  226. /**
  227. * sets the coloring of the given progress bar to color_accent.
  228. *
  229. * @param progressBar the progress bar to be colored
  230. * @param color the color to be used
  231. */
  232. public static void colorHorizontalProgressBar(ProgressBar progressBar, @ColorInt int color) {
  233. if (progressBar != null) {
  234. progressBar.getIndeterminateDrawable().setColorFilter(color, PorterDuff.Mode.SRC_IN);
  235. progressBar.getProgressDrawable().setColorFilter(color, PorterDuff.Mode.SRC_IN);
  236. }
  237. }
  238. /**
  239. * sets the coloring of the given seek bar to color_accent.
  240. *
  241. * @param seekBar the seek bar to be colored
  242. */
  243. public static void colorHorizontalSeekBar(SeekBar seekBar, Context context) {
  244. int color = ThemeUtils.primaryAccentColor(context);
  245. colorHorizontalProgressBar(seekBar, color);
  246. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
  247. seekBar.getThumb().setColorFilter(color, PorterDuff.Mode.SRC_IN);
  248. }
  249. }
  250. /**
  251. * set the Nextcloud standard colors for the snackbar.
  252. *
  253. * @param context the context relevant for setting the color according to the context's theme
  254. * @param snackbar the snackbar to be colored
  255. */
  256. public static void colorSnackbar(Context context, Snackbar snackbar) {
  257. // Changing action button text color
  258. snackbar.setActionTextColor(ContextCompat.getColor(context, R.color.white));
  259. }
  260. /**
  261. * Sets the color of the status bar to {@code color} on devices with OS version lollipop or higher.
  262. *
  263. * @param fragmentActivity fragment activity
  264. * @param color the color
  265. */
  266. public static void colorStatusBar(FragmentActivity fragmentActivity, @ColorInt int color) {
  267. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
  268. fragmentActivity.getWindow().setStatusBarColor(color);
  269. }
  270. }
  271. /**
  272. * Sets the color of the progressbar to {@code color} within the given toolbar.
  273. *
  274. * @param activity the toolbar activity instance
  275. * @param progressBarColor the color to be used for the toolbar's progress bar
  276. */
  277. public static void colorToolbarProgressBar(FragmentActivity activity, int progressBarColor) {
  278. if (activity instanceof ToolbarActivity) {
  279. ((ToolbarActivity) activity).setProgressBarBackgroundColor(progressBarColor);
  280. }
  281. }
  282. public static void tintCheckbox(AppCompatCheckBox checkBox, int color) {
  283. CompoundButtonCompat.setButtonTintList(checkBox, new ColorStateList(
  284. new int[][]{
  285. new int[]{-android.R.attr.state_checked},
  286. new int[]{android.R.attr.state_checked},
  287. },
  288. new int[]{
  289. Color.GRAY,
  290. color
  291. }
  292. ));
  293. }
  294. public static void tintSwitch(SwitchCompat switchView, int color) {
  295. tintSwitch(switchView, color, false);
  296. }
  297. public static void tintSwitch(SwitchCompat switchView, int color, boolean colorText) {
  298. if (colorText) {
  299. switchView.setTextColor(color);
  300. }
  301. int trackColor = Color.argb(77, Color.red(color), Color.green(color), Color.blue(color));
  302. // setting the thumb color
  303. DrawableCompat.setTintList(switchView.getThumbDrawable(), new ColorStateList(
  304. new int[][]{new int[]{android.R.attr.state_checked}, new int[]{}},
  305. new int[]{color, Color.WHITE}));
  306. // setting the track color
  307. DrawableCompat.setTintList(switchView.getTrackDrawable(), new ColorStateList(
  308. new int[][]{new int[]{android.R.attr.state_checked}, new int[]{}},
  309. new int[]{trackColor, Color.parseColor("#4D000000")}));
  310. }
  311. public static Drawable tintDrawable(@DrawableRes int id, int color) {
  312. Drawable drawable = ResourcesCompat.getDrawable(MainApp.getAppContext().getResources(), id, null);
  313. return tintDrawable(drawable, color);
  314. }
  315. public static Drawable tintDrawable(Drawable drawable, int color) {
  316. if (drawable != null) {
  317. Drawable wrap = DrawableCompat.wrap(drawable);
  318. wrap.setColorFilter(color, PorterDuff.Mode.SRC_ATOP);
  319. return wrap;
  320. } else {
  321. return drawable;
  322. }
  323. }
  324. public static String colorToHexString(int color) {
  325. return String.format("#%06X", 0xFFFFFF & color);
  326. }
  327. public static void tintFloatingActionButton(FloatingActionButton button, @DrawableRes int
  328. drawable, Context context) {
  329. button.setBackgroundTintList(ColorStateList.valueOf(ThemeUtils.primaryColor(context)));
  330. button.setRippleColor(ThemeUtils.primaryDarkColor(context));
  331. button.setImageDrawable(ThemeUtils.tintDrawable(drawable, ThemeUtils.fontColor(context)));
  332. }
  333. private static OCCapability getCapability(Context context) {
  334. return getCapability(null, context);
  335. }
  336. private static OCCapability getCapability(Account acc, Context context) {
  337. Account account;
  338. if (acc != null) {
  339. account = acc;
  340. } else {
  341. account = AccountUtils.getCurrentOwnCloudAccount(context);
  342. }
  343. if (account != null) {
  344. FileDataStorageManager storageManager = new FileDataStorageManager(account, context.getContentResolver());
  345. return storageManager.getCapability(account.name);
  346. } else {
  347. return new OCCapability();
  348. }
  349. }
  350. }