summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTa-wei Yen <twyen@google.com>2015-11-04 01:54:36 +0000
committerandroid-build-merger <android-build-merger@google.com>2015-11-04 01:54:36 +0000
commit707863aa4d5f49c85f46ac4073413ee2fbf48d69 (patch)
treee5288ca6c0be43b8c8d90ee1a2bb7786d1957bcb
parent566e99e477193805af4f3d33d09584a37af023d8 (diff)
parent26072c733ba61f6cbbdfb40808fb6a700af8e1f7 (diff)
Merge "Remove "Blocked Caller" Avatar in call detail" into ub-contactsdialer-a-dev
am: 26072c733b * commit '26072c733ba61f6cbbdfb40808fb6a700af8e1f7': Remove "Blocked Caller" Avatar in call detail
-rw-r--r--src/com/android/dialer/CallDetailActivity.java17
1 files changed, 5 insertions, 12 deletions
diff --git a/src/com/android/dialer/CallDetailActivity.java b/src/com/android/dialer/CallDetailActivity.java
index ab63ddc21..0d943e055 100644
--- a/src/com/android/dialer/CallDetailActivity.java
+++ b/src/com/android/dialer/CallDetailActivity.java
@@ -161,7 +161,8 @@ public class CallDetailActivity extends AppCompatActivity
mHistoryList.setAdapter(
new CallDetailHistoryAdapter(mContext, mInflater, mCallTypeHelper, details));
- updatePhotoAndBlockActionItem();
+ updateFilteredNumberChanges();
+ updateContactPhoto();
findViewById(R.id.call_detail).setVisibility(View.VISIBLE);
}
@@ -380,15 +381,15 @@ public class CallDetailActivity extends AppCompatActivity
@Override
public void onChangeFilteredNumberSuccess() {
- updatePhotoAndBlockActionItem();
+ updateFilteredNumberChanges();
}
@Override
public void onChangeFilteredNumberUndo() {
- updatePhotoAndBlockActionItem();
+ updateFilteredNumberChanges();
}
- private void updatePhotoAndBlockActionItem() {
+ private void updateFilteredNumberChanges() {
if (mDetails == null ||
!FilteredNumbersUtil.canBlockNumber(this, mNumber, mDetails.countryIso)) {
return;
@@ -399,14 +400,11 @@ public class CallDetailActivity extends AppCompatActivity
@Override
public void onCheckComplete(Integer id) {
mBlockedNumberId = id;
-
- updateContactPhoto();
updateBlockActionItem();
}
}, mNumber, mDetails.countryIso);
if (!success) {
- updateContactPhoto();
updateBlockActionItem();
}
}
@@ -417,11 +415,6 @@ public class CallDetailActivity extends AppCompatActivity
return;
}
- if (mBlockedNumberId != null) {
- mQuickContactBadge.setImageDrawable(mContext.getDrawable(R.drawable.blocked_contact));
- return;
- }
-
final boolean isVoicemailNumber =
PhoneNumberUtil.isVoicemailNumber(mContext, mDetails.accountHandle, mNumber);
final boolean isBusiness = mContactInfoHelper.isBusiness(mDetails.sourceType);