Эх сурвалжийг харах

user info activity: use colors from the corresponding server and not from the actual account

tobiasKaminsky 7 жил өмнө
parent
commit
73df430589

+ 9 - 3
src/main/java/com/owncloud/android/ui/activity/ToolbarActivity.java

@@ -50,7 +50,7 @@ public abstract class ToolbarActivity extends BaseActivity {
      * Toolbar setup that must be called in implementer's {@link #onCreate} after {@link #setContentView} if they
      * want to use the toolbar.
      */
-    protected void setupToolbar() {
+    protected void setupToolbar(boolean useBackgroundImage) {
         Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
         setSupportActionBar(toolbar);
 
@@ -64,7 +64,13 @@ public abstract class ToolbarActivity extends BaseActivity {
             DisplayUtils.tintDrawable(toolbar.getOverflowIcon(), DisplayUtils.fontColor());
         }
 
-        toolbar.setBackgroundColor(DisplayUtils.primaryColor());
+        if (!useBackgroundImage) {
+            toolbar.setBackgroundColor(DisplayUtils.primaryColor());
+        }
+    }
+
+    protected void setupToolbar() {
+        setupToolbar(false);
     }
 
     /**
@@ -104,7 +110,7 @@ public abstract class ToolbarActivity extends BaseActivity {
 
         Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
 
-        toolbar.setBackgroundColor(DisplayUtils.primaryColor());
+//        toolbar.setBackgroundColor(DisplayUtils.primaryColor());
 
         // set home button properties
         if (actionBar != null) {

+ 9 - 5
src/main/java/com/owncloud/android/ui/activity/UserInfoActivity.java

@@ -194,12 +194,16 @@ public class UserInfoActivity extends FileActivity {
         setContentView(R.layout.user_info_layout);
         unbinder = ButterKnife.bind(this);
 
-        setupToolbar();
-        updateActionBarTitleAndHomeButtonByString("");
-
         setAccount(AccountUtils.getCurrentOwnCloudAccount(this));
         onAccountSet(false);
 
+        boolean useBackgroundImage = URLUtil.isValidUrl(
+                getStorageManager().getCapability(account.name).getServerBackground());
+
+        setupToolbar(useBackgroundImage);
+        updateActionBarTitleAndHomeButtonByString("");
+
+
         if (userInfo != null) {
             populateUserInfoUi(userInfo);
             emptyContentContainer.setVisibility(View.GONE);
@@ -303,9 +307,9 @@ public class UserInfoActivity extends FileActivity {
     private void populateUserInfoUi(UserInfo userInfo) {
         userName.setText(account.name);
         DisplayUtils.setAvatar(account, UserInfoActivity.this,
-                mCurrentAccountAvatarRadiusDimension, getResources(), getStorageManager(),avatar);
+                mCurrentAccountAvatarRadiusDimension, getResources(), getStorageManager(), avatar);
 
-        int tint = DisplayUtils.primaryColor();
+        int tint = Color.parseColor(getStorageManager().getCapability(account.name).getServerColor());
 
         if (userInfo != null) {
             if (!TextUtils.isEmpty(userInfo.getDisplayName())) {