123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- /*
- * Nextcloud Android client application
- *
- * @author Andy Scherzinger
- * Copyright (C) 2016 Andy Scherzinger
- * Copyright (C) 2016 Nextcloud
- * Copyright (C) 2016 ownCloud Inc.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
- * License as published by the Free Software Foundation; either
- * version 3 of the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
- *
- * You should have received a copy of the GNU Affero General Public
- * License along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package com.owncloud.android.ui.activity;
- import android.graphics.Bitmap;
- import android.graphics.PorterDuff;
- import android.graphics.drawable.Drawable;
- import android.os.Bundle;
- import android.view.View;
- import android.widget.ImageView;
- import android.widget.LinearLayout;
- import android.widget.ProgressBar;
- import android.widget.TextView;
- import com.owncloud.android.R;
- import com.owncloud.android.datamodel.FileDataStorageManager;
- import com.owncloud.android.datamodel.OCFile;
- import com.owncloud.android.utils.ThemeUtils;
- import androidx.annotation.ColorInt;
- import androidx.annotation.StringRes;
- import androidx.appcompat.app.ActionBar;
- import androidx.appcompat.widget.Toolbar;
- import androidx.core.content.ContextCompat;
- /**
- * Base class providing toolbar registration functionality, see {@link #setupToolbar()}.
- */
- public abstract class ToolbarActivity extends BaseActivity {
- private ProgressBar mProgressBar;
- private ImageView mPreviewImage;
- private LinearLayout mInfoBox;
- private TextView mInfoBoxMessage;
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- }
- /**
- * Toolbar setup that must be called in implementer's {@link #onCreate} after {@link #setContentView} if they
- * want to use the toolbar.
- */
- protected void setupToolbar(boolean useBackgroundImage) {
- int primaryColor = ThemeUtils.primaryColor(this, false);
- int primaryDarkColor = ThemeUtils.primaryDarkColor(this);
- int fontColor = ThemeUtils.fontColor(this);
- Toolbar toolbar = findViewById(R.id.toolbar);
- setSupportActionBar(toolbar);
- mProgressBar = findViewById(R.id.progressBar);
- if (mProgressBar != null) {
- mProgressBar.setIndeterminateDrawable(
- ContextCompat.getDrawable(this, R.drawable.actionbar_progress_indeterminate_horizontal));
- ThemeUtils.colorToolbarProgressBar(this, ThemeUtils.primaryColor(this, false));
- }
- mInfoBox = findViewById(R.id.info_box);
- mInfoBoxMessage = findViewById(R.id.info_box_message);
- mPreviewImage = findViewById(R.id.preview_image);
- ThemeUtils.colorStatusBar(this, primaryColor);
- if (toolbar.getOverflowIcon() != null) {
- ThemeUtils.tintDrawable(toolbar.getOverflowIcon(), fontColor);
- }
- if (toolbar.getNavigationIcon() != null) {
- ThemeUtils.tintDrawable(toolbar.getNavigationIcon(), fontColor);
- }
- if (!useBackgroundImage) {
- toolbar.setBackgroundColor(primaryColor);
- }
- }
- public void setupToolbar() {
- setupToolbar(false);
- }
- /**
- * Updates title bar and home buttons (state and icon).
- */
- protected void updateActionBarTitleAndHomeButton(OCFile chosenFile) {
- String title = ThemeUtils.getDefaultDisplayNameForRootFolder(this); // default
- boolean inRoot;
- // choose the appropriate title
- inRoot = chosenFile == null ||
- (chosenFile.isFolder() && chosenFile.getParentId() == FileDataStorageManager.ROOT_PARENT_ID);
- if (!inRoot) {
- title = chosenFile.getFileName();
- }
- updateActionBarTitleAndHomeButtonByString(title);
- }
- /**
- * Updates title bar and home buttons (state and icon).
- */
- protected void updateActionBarTitleAndHomeButtonByString(String title) {
- String titleToSet = getString(R.string.app_name); // default
- if (title != null) {
- titleToSet = title;
- }
- // set & color the chosen title
- ActionBar actionBar = getSupportActionBar();
- ThemeUtils.setColoredTitle(actionBar, titleToSet, this);
- // set home button properties
- if (actionBar != null) {
- actionBar.setDisplayHomeAsUpEnabled(true);
- actionBar.setDisplayShowTitleEnabled(true);
- }
- Toolbar toolbar = findViewById(R.id.toolbar);
- if (toolbar != null && toolbar.getNavigationIcon() != null) {
- ThemeUtils.tintDrawable(toolbar.getNavigationIcon(), ThemeUtils.fontColor(this));
- }
- }
- /**
- * checks if the given file is the root folder.
- *
- * @param file file to be checked if it is the root folder
- * @return <code>true</code> if it is <code>null</code> or the root folder, else returns <code>false</code>
- */
- public boolean isRoot(OCFile file) {
- return file == null || (file.isFolder() && file.getParentId() == FileDataStorageManager.ROOT_PARENT_ID);
- }
- /**
- * shows the toolbar's info box with the given text.
- *
- * @param text the text to be displayed
- */
- protected final void showInfoBox(@StringRes int text) {
- mInfoBox.setVisibility(View.VISIBLE);
- mInfoBoxMessage.setText(text);
- }
- /**
- * Hides the toolbar's info box.
- */
- protected final void hideInfoBox() {
- mInfoBox.setVisibility(View.GONE);
- }
- /**
- * Change the indeterminate mode for the toolbar's progress bar.
- *
- * @param indeterminate <code>true</code> to enable the indeterminate mode
- */
- public void setIndeterminate(boolean indeterminate) {
- if (mProgressBar != null) {
- mProgressBar.setIndeterminate(indeterminate);
- }
- }
- /**
- * Change the visibility for the toolbar's progress bar.
- *
- * @param visibility visibility of the progress bar
- */
- public void setProgressBarVisibility(int visibility) {
- if (mProgressBar != null) {
- mProgressBar.setVisibility(visibility);
- }
- }
- /**
- * Change the visibility for the toolbar's preview image.
- *
- * @param visibility visibility of the preview image
- */
- public void setPreviewImageVisibility(int visibility) {
- if (mPreviewImage != null) {
- mPreviewImage.setVisibility(visibility);
- }
- }
- /**
- * Change the bitmap for the toolbar's preview image.
- *
- * @param bitmap bitmap of the preview image
- */
- public void setPreviewImageBitmap(Bitmap bitmap) {
- if (mPreviewImage != null) {
- mPreviewImage.setImageBitmap(bitmap);
- }
- }
- /**
- * Change the drawable for the toolbar's preview image.
- *
- * @param drawable drawable of the preview image
- */
- public void setPreviewImageDrawable(Drawable drawable) {
- if (mPreviewImage != null) {
- mPreviewImage.setImageDrawable(drawable);
- }
- }
- /**
- * get the toolbar's preview image view.
- */
- public ImageView getPreviewImageView() {
- return mPreviewImage;
- }
- /**
- * Set the background to to progress bar of the toolbar. The resource should refer to
- * a Drawable object or 0 to remove the background.#
- *
- * @param color The identifier of the color.
- */
- public void setProgressBarBackgroundColor(@ColorInt int color) {
- mProgressBar.setBackgroundColor(color);
- mProgressBar.getProgressDrawable().setColorFilter(color, PorterDuff.Mode.SRC_IN);
- }
- }
|