summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenson Huang <benson.huang@mediatek.com>2015-02-11 11:42:51 +0800
committerNicholas Sauer <nicksauer@google.com>2015-02-11 04:13:23 +0000
commit71393a01294596f353acd481424e3cfe1be674ac (patch)
tree3ff614eb677fae87e6c1cbc9dd36541cdd6172c1
parentc7cf501f75bcf8a9c806c501ef8f1a39d796d9f9 (diff)
downloadFMRadio-71393a01294596f353acd481424e3cfe1be674ac.tar.gz
[FM] #lqa5f0cf83f: Android - LQA - MR1 Radio and Dual SIM - RU - Discard button truncatedandroid-5.1.0_r5android-5.1.0_r4android-5.1.0_r3android-5.1.0_r1lollipop-mr1-dev
In the saving the recording dialog box the "Discard" button is truncated to 2 (two) letters. Currently we use the most obvious and explicit translation of ".. .........". This can be shortened, if required, but not to 2 letters anyway. Please provide more space. The fix is to change the layout. Bug 19206787 from: https://partner-android-review.googlesource.com/#/c/202243/1 Change-Id: I328783efd2cbb959b658824b683391a81e48af0c Signed-off-by: Benson Huang <benson.huang@mediatek.com>
-rw-r--r--res/layout/save_dialog.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/res/layout/save_dialog.xml b/res/layout/save_dialog.xml
index 6c067cd..7782bc4 100644
--- a/res/layout/save_dialog.xml
+++ b/res/layout/save_dialog.xml
@@ -74,8 +74,9 @@
<Button
android:id="@+id/save_dialog_button_discard"
- android:layout_width="88dip"
+ android:layout_width="wrap_content"
android:layout_height="match_parent"
+ android:layout_marginEnd="5dip"
android:alpha="0.87"
android:background="?android:selectableItemBackground"
android:fontFamily="sans-serif-medium"
@@ -85,8 +86,9 @@
<Button
android:id="@+id/save_dialog_button_save"
- android:layout_width="88dip"
+ android:layout_width="wrap_content"
android:layout_height="match_parent"
+ android:layout_marginStart="5dip"
android:alpha="1"
android:background="?android:selectableItemBackground"
android:fontFamily="sans-serif-medium"