浏览代码

Merge pull request #906 from nextcloud/manageAccountNPE

prevent NPE if quotaLink does not exist, e.g. in manageaccount activity
Andy Scherzinger 8 年之前
父节点
当前提交
957670eb97
共有 1 个文件被更改,包括 42 次插入40 次删除
  1. 42 40
      src/main/java/com/owncloud/android/ui/activity/DrawerActivity.java

+ 42 - 40
src/main/java/com/owncloud/android/ui/activity/DrawerActivity.java

@@ -830,56 +830,58 @@ public abstract class DrawerActivity extends ToolbarActivity implements DisplayU
     }
 
     private void updateQuotaLink() {
-        if (getBaseContext().getResources().getBoolean(R.bool.show_external_links)) {
-            ArrayList<ExternalLink> quotas = externalLinksProvider.getExternalLink(ExternalLinkType.QUOTA);
-
-            float density = getResources().getDisplayMetrics().density;
-            final int size = Math.round(24 * density);
-
-            if (quotas.size() > 0) {
-                final ExternalLink firstQuota = quotas.get(0);
-                mQuotaTextLink.setText(firstQuota.name);
-                mQuotaTextLink.setClickable(true);
-                mQuotaTextLink.setVisibility(View.VISIBLE);
-                mQuotaTextLink.setOnClickListener(new View.OnClickListener() {
-                    @Override
-                    public void onClick(View v) {
-                        Intent externalWebViewIntent = new Intent(getApplicationContext(), ExternalSiteWebView.class);
-                        externalWebViewIntent.putExtra(ExternalSiteWebView.EXTRA_TITLE, firstQuota.name);
-                        externalWebViewIntent.putExtra(ExternalSiteWebView.EXTRA_URL, firstQuota.url);
-                        externalWebViewIntent.putExtra(ExternalSiteWebView.EXTRA_SHOW_SIDEBAR, true);
-                        externalWebViewIntent.putExtra(ExternalSiteWebView.EXTRA_MENU_ITEM_ID, -1);
-                        startActivity(externalWebViewIntent);
-                    }
-                });
+        if (mQuotaTextLink != null) {
+            if (getBaseContext().getResources().getBoolean(R.bool.show_external_links)) {
+                ArrayList<ExternalLink> quotas = externalLinksProvider.getExternalLink(ExternalLinkType.QUOTA);
+
+                float density = getResources().getDisplayMetrics().density;
+                final int size = Math.round(24 * density);
+
+                if (quotas.size() > 0) {
+                    final ExternalLink firstQuota = quotas.get(0);
+                    mQuotaTextLink.setText(firstQuota.name);
+                    mQuotaTextLink.setClickable(true);
+                    mQuotaTextLink.setVisibility(View.VISIBLE);
+                    mQuotaTextLink.setOnClickListener(new View.OnClickListener() {
+                        @Override
+                        public void onClick(View v) {
+                            Intent externalWebViewIntent = new Intent(getApplicationContext(), ExternalSiteWebView.class);
+                            externalWebViewIntent.putExtra(ExternalSiteWebView.EXTRA_TITLE, firstQuota.name);
+                            externalWebViewIntent.putExtra(ExternalSiteWebView.EXTRA_URL, firstQuota.url);
+                            externalWebViewIntent.putExtra(ExternalSiteWebView.EXTRA_SHOW_SIDEBAR, true);
+                            externalWebViewIntent.putExtra(ExternalSiteWebView.EXTRA_MENU_ITEM_ID, -1);
+                            startActivity(externalWebViewIntent);
+                        }
+                    });
 
 
-                SimpleTarget target = new SimpleTarget<Drawable>() {
-                    @Override
-                    public void onResourceReady(Drawable resource, GlideAnimation glideAnimation) {
-                        Drawable test = resource.getCurrent();
-                        test.setBounds(0, 0, size, size);
-                        mQuotaTextLink.setCompoundDrawablesWithIntrinsicBounds(test, null, null, null);
-                    }
+                    SimpleTarget target = new SimpleTarget<Drawable>() {
+                        @Override
+                        public void onResourceReady(Drawable resource, GlideAnimation glideAnimation) {
+                            Drawable test = resource.getCurrent();
+                            test.setBounds(0, 0, size, size);
+                            mQuotaTextLink.setCompoundDrawablesWithIntrinsicBounds(test, null, null, null);
+                        }
 
-                    @Override
-                    public void onLoadFailed(Exception e, Drawable errorDrawable) {
-                        super.onLoadFailed(e, errorDrawable);
+                        @Override
+                        public void onLoadFailed(Exception e, Drawable errorDrawable) {
+                            super.onLoadFailed(e, errorDrawable);
 
-                        Drawable test = errorDrawable.getCurrent();
-                        test.setBounds(0, 0, size, size);
+                            Drawable test = errorDrawable.getCurrent();
+                            test.setBounds(0, 0, size, size);
 
-                        mQuotaTextLink.setCompoundDrawablesWithIntrinsicBounds(test, null, null, null);
-                    }
-                };
+                            mQuotaTextLink.setCompoundDrawablesWithIntrinsicBounds(test, null, null, null);
+                        }
+                    };
 
-                DisplayUtils.downloadIcon(this, firstQuota.iconUrl, target, R.drawable.ic_link_grey, size, size);
+                    DisplayUtils.downloadIcon(this, firstQuota.iconUrl, target, R.drawable.ic_link_grey, size, size);
 
+                } else {
+                    mQuotaTextLink.setVisibility(View.INVISIBLE);
+                }
             } else {
                 mQuotaTextLink.setVisibility(View.INVISIBLE);
             }
-        } else {
-            mQuotaTextLink.setVisibility(View.INVISIBLE);
         }
     }