diff options
author | Yorke Lee <yorkelee@google.com> | 2015-11-10 02:45:48 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-11-10 02:45:48 +0000 |
commit | 6752a2ffb4322c1136cd1560075259ab5884b37c (patch) | |
tree | 105fa11b4c6d899e271ad74c240e8a504522d1a8 /src | |
parent | ad60c688155853efcc594e2906fca146fe0266f2 (diff) | |
parent | 516be4dc3cb7088aa4344938347e18770f6aff67 (diff) |
Merge "Fix RTL layout for "Block number" action in Call Details" into ub-contactsdialer-a-dev
Diffstat (limited to 'src')
-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); } |