diff options
author | Yorke Lee <yorkelee@google.com> | 2015-11-10 02:50:23 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2015-11-10 02:50:23 +0000 |
commit | 83f5267217ea8ed3c0b3ea17594dd694311593b2 (patch) | |
tree | f278a3ffb99414af1ac542dcb634acbfad3fb670 | |
parent | 3f166a09865121a493867ee4dae19476a6272cf8 (diff) | |
parent | 6bf4f2787c2babf5825d6f204a078b4c28e1e205 (diff) |
Merge "Fix RTL layout for "Block number" action in Call Details" into ub-contactsdialer-a-dev am: 6752a2ffb4
am: 6bf4f2787c
* commit '6bf4f2787c2babf5825d6f204a078b4c28e1e205':
Fix RTL layout for "Block number" action in Call Details
-rw-r--r-- | src/com/android/dialer/CallDetailActivity.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/dialer/CallDetailActivity.java b/src/com/android/dialer/CallDetailActivity.java index f63fcf3b0..2e2bea8ce 100644 --- a/src/com/android/dialer/CallDetailActivity.java +++ b/src/com/android/dialer/CallDetailActivity.java @@ -445,11 +445,11 @@ public class CallDetailActivity extends AppCompatActivity private void updateBlockActionItem() { if (mBlockedNumberId == null) { mBlockNumberActionItem.setText(R.string.action_block_number); - mBlockNumberActionItem.setCompoundDrawablesWithIntrinsicBounds( + mBlockNumberActionItem.setCompoundDrawablesRelativeWithIntrinsicBounds( R.drawable.ic_call_detail_block, 0, 0, 0); } else { mBlockNumberActionItem.setText(R.string.action_unblock_number); - mBlockNumberActionItem.setCompoundDrawablesWithIntrinsicBounds( + mBlockNumberActionItem.setCompoundDrawablesRelativeWithIntrinsicBounds( R.drawable.ic_call_detail_unblock, 0, 0, 0); } |