ToolbarActivity.java 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. /*
  2. * Nextcloud Android client application
  3. *
  4. * @author Andy Scherzinger
  5. * Copyright (C) 2016 Andy Scherzinger
  6. * Copyright (C) 2016 Nextcloud
  7. * Copyright (C) 2016 ownCloud Inc.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
  11. * License as published by the Free Software Foundation; either
  12. * version 3 of the License, or any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public
  20. * License along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. */
  22. package com.owncloud.android.ui.activity;
  23. import android.graphics.Bitmap;
  24. import android.graphics.PorterDuff;
  25. import android.graphics.drawable.Drawable;
  26. import android.os.Bundle;
  27. import android.view.View;
  28. import android.widget.ImageView;
  29. import android.widget.LinearLayout;
  30. import android.widget.ProgressBar;
  31. import android.widget.TextView;
  32. import com.owncloud.android.R;
  33. import com.owncloud.android.datamodel.FileDataStorageManager;
  34. import com.owncloud.android.datamodel.OCFile;
  35. import com.owncloud.android.utils.ThemeUtils;
  36. import androidx.annotation.ColorInt;
  37. import androidx.annotation.StringRes;
  38. import androidx.appcompat.app.ActionBar;
  39. import androidx.appcompat.widget.Toolbar;
  40. import androidx.core.content.ContextCompat;
  41. /**
  42. * Base class providing toolbar registration functionality, see {@link #setupToolbar()}.
  43. */
  44. public abstract class ToolbarActivity extends BaseActivity {
  45. private ProgressBar mProgressBar;
  46. private ImageView mPreviewImage;
  47. private LinearLayout mInfoBox;
  48. private TextView mInfoBoxMessage;
  49. @Override
  50. protected void onCreate(Bundle savedInstanceState) {
  51. super.onCreate(savedInstanceState);
  52. }
  53. /**
  54. * Toolbar setup that must be called in implementer's {@link #onCreate} after {@link #setContentView} if they
  55. * want to use the toolbar.
  56. */
  57. protected void setupToolbar(boolean useBackgroundImage) {
  58. int primaryColor = ThemeUtils.primaryColor(this, false);
  59. int primaryDarkColor = ThemeUtils.primaryDarkColor(this);
  60. int fontColor = ThemeUtils.fontColor(this);
  61. Toolbar toolbar = findViewById(R.id.toolbar);
  62. setSupportActionBar(toolbar);
  63. mProgressBar = findViewById(R.id.progressBar);
  64. if (mProgressBar != null) {
  65. mProgressBar.setIndeterminateDrawable(
  66. ContextCompat.getDrawable(this, R.drawable.actionbar_progress_indeterminate_horizontal));
  67. ThemeUtils.colorToolbarProgressBar(this, ThemeUtils.primaryColor(this, false));
  68. }
  69. mInfoBox = findViewById(R.id.info_box);
  70. mInfoBoxMessage = findViewById(R.id.info_box_message);
  71. mPreviewImage = findViewById(R.id.preview_image);
  72. ThemeUtils.colorStatusBar(this, primaryColor);
  73. if (toolbar.getOverflowIcon() != null) {
  74. ThemeUtils.tintDrawable(toolbar.getOverflowIcon(), fontColor);
  75. }
  76. if (toolbar.getNavigationIcon() != null) {
  77. ThemeUtils.tintDrawable(toolbar.getNavigationIcon(), fontColor);
  78. }
  79. if (!useBackgroundImage) {
  80. toolbar.setBackgroundColor(primaryColor);
  81. }
  82. }
  83. public void setupToolbar() {
  84. setupToolbar(false);
  85. }
  86. /**
  87. * Updates title bar and home buttons (state and icon).
  88. */
  89. protected void updateActionBarTitleAndHomeButton(OCFile chosenFile) {
  90. String title = ThemeUtils.getDefaultDisplayNameForRootFolder(this); // default
  91. boolean inRoot;
  92. // choose the appropriate title
  93. inRoot = chosenFile == null ||
  94. (chosenFile.isFolder() && chosenFile.getParentId() == FileDataStorageManager.ROOT_PARENT_ID);
  95. if (!inRoot) {
  96. title = chosenFile.getFileName();
  97. }
  98. updateActionBarTitleAndHomeButtonByString(title);
  99. }
  100. /**
  101. * Updates title bar and home buttons (state and icon).
  102. */
  103. protected void updateActionBarTitleAndHomeButtonByString(String title) {
  104. String titleToSet = getString(R.string.app_name); // default
  105. if (title != null) {
  106. titleToSet = title;
  107. }
  108. // set & color the chosen title
  109. ActionBar actionBar = getSupportActionBar();
  110. ThemeUtils.setColoredTitle(actionBar, titleToSet, this);
  111. // set home button properties
  112. if (actionBar != null) {
  113. actionBar.setDisplayHomeAsUpEnabled(true);
  114. actionBar.setDisplayShowTitleEnabled(true);
  115. }
  116. Toolbar toolbar = findViewById(R.id.toolbar);
  117. if (toolbar != null && toolbar.getNavigationIcon() != null) {
  118. ThemeUtils.tintDrawable(toolbar.getNavigationIcon(), ThemeUtils.fontColor(this));
  119. }
  120. }
  121. /**
  122. * checks if the given file is the root folder.
  123. *
  124. * @param file file to be checked if it is the root folder
  125. * @return <code>true</code> if it is <code>null</code> or the root folder, else returns <code>false</code>
  126. */
  127. public boolean isRoot(OCFile file) {
  128. return file == null || (file.isFolder() && file.getParentId() == FileDataStorageManager.ROOT_PARENT_ID);
  129. }
  130. /**
  131. * shows the toolbar's info box with the given text.
  132. *
  133. * @param text the text to be displayed
  134. */
  135. protected final void showInfoBox(@StringRes int text) {
  136. mInfoBox.setVisibility(View.VISIBLE);
  137. mInfoBoxMessage.setText(text);
  138. }
  139. /**
  140. * Hides the toolbar's info box.
  141. */
  142. protected final void hideInfoBox() {
  143. mInfoBox.setVisibility(View.GONE);
  144. }
  145. /**
  146. * Change the indeterminate mode for the toolbar's progress bar.
  147. *
  148. * @param indeterminate <code>true</code> to enable the indeterminate mode
  149. */
  150. public void setIndeterminate(boolean indeterminate) {
  151. if (mProgressBar != null) {
  152. mProgressBar.setIndeterminate(indeterminate);
  153. }
  154. }
  155. /**
  156. * Change the visibility for the toolbar's progress bar.
  157. *
  158. * @param visibility visibility of the progress bar
  159. */
  160. public void setProgressBarVisibility(int visibility) {
  161. if (mProgressBar != null) {
  162. mProgressBar.setVisibility(visibility);
  163. }
  164. }
  165. /**
  166. * Change the visibility for the toolbar's preview image.
  167. *
  168. * @param visibility visibility of the preview image
  169. */
  170. public void setPreviewImageVisibility(int visibility) {
  171. if (mPreviewImage != null) {
  172. mPreviewImage.setVisibility(visibility);
  173. }
  174. }
  175. /**
  176. * Change the bitmap for the toolbar's preview image.
  177. *
  178. * @param bitmap bitmap of the preview image
  179. */
  180. public void setPreviewImageBitmap(Bitmap bitmap) {
  181. if (mPreviewImage != null) {
  182. mPreviewImage.setImageBitmap(bitmap);
  183. }
  184. }
  185. /**
  186. * Change the drawable for the toolbar's preview image.
  187. *
  188. * @param drawable drawable of the preview image
  189. */
  190. public void setPreviewImageDrawable(Drawable drawable) {
  191. if (mPreviewImage != null) {
  192. mPreviewImage.setImageDrawable(drawable);
  193. }
  194. }
  195. /**
  196. * get the toolbar's preview image view.
  197. */
  198. public ImageView getPreviewImageView() {
  199. return mPreviewImage;
  200. }
  201. /**
  202. * Set the background to to progress bar of the toolbar. The resource should refer to
  203. * a Drawable object or 0 to remove the background.#
  204. *
  205. * @param color The identifier of the color.
  206. */
  207. public void setProgressBarBackgroundColor(@ColorInt int color) {
  208. mProgressBar.setBackgroundColor(color);
  209. mProgressBar.getProgressDrawable().setColorFilter(color, PorterDuff.Mode.SRC_IN);
  210. }
  211. }