Bug 1391177 - Part 2: Change text yes/no in search suggestion prompt to capitals. r?nechen,walkingice draft
authorJing-wei Wu <topwu.tw@gmail.com>
Mon, 14 Aug 2017 15:07:22 +0800
changeset 653770 79e3b1ec8410022960947d951158e20e4b874676
parent 653769 7fd1605cb9f2a55fbb655527b805a25ba549824a
child 653771 1ad08e0cf5e7a6c6abad087bf499f9b1eed923c1
push id76402
push userbmo:topwu.tw@gmail.com
push dateMon, 28 Aug 2017 00:49:54 +0000
reviewersnechen, walkingice
bugs1391177
milestone57.0a1
Bug 1391177 - Part 2: Change text yes/no in search suggestion prompt to capitals. r?nechen,walkingice MozReview-Commit-ID: LTiVMsPdO88
mobile/android/app/src/photon/res/layout/home_suggestion_prompt.xml
--- a/mobile/android/app/src/photon/res/layout/home_suggestion_prompt.xml
+++ b/mobile/android/app/src/photon/res/layout/home_suggestion_prompt.xml
@@ -32,25 +32,27 @@
         android:layout_height="match_parent"
         android:alpha="0.5"
         android:background="@drawable/search_suggestion_prompt_no"
         android:focusable="true"
         android:gravity="center"
         android:minWidth="64dp"
         android:nextFocusRight="@+id/suggestions_prompt_yes"
         android:text="@string/button_no"
+        android:textAllCaps="true"
         android:textColor="@android:color/white"
         android:textSize="14sp"
         android:textStyle="bold"/>
 
     <TextView
         android:id="@+id/suggestions_prompt_yes"
         android:layout_width="wrap_content"
         android:layout_height="match_parent"
         android:background="@drawable/search_suggestion_prompt_yes"
         android:focusable="true"
         android:gravity="center"
         android:minWidth="64dp"
         android:text="@string/button_yes"
+        android:textAllCaps="true"
         android:textColor="@android:color/white"
         android:textSize="14sp"
         android:textStyle="bold"/>
 </LinearLayout>