diff options
author | Luis Vidal <lvidal@cyngn.com> | 2016-02-11 15:44:24 -0800 |
---|---|---|
committer | Luis Vidal <lvidal@cyngn.com> | 2016-02-12 11:25:03 -0800 |
commit | 46c47f62bb158ffd46e3499ad6312070b10bb113 (patch) | |
tree | e80c5ca98b839a769e1153ce805a13f1c220e95c /res/layout/wallpaper_component_selection_item.xml | |
parent | bb32275e34826dd67636d5712b0651d23751b6d2 (diff) | |
download | packages_apps_ThemeChooser-46c47f62bb158ffd46e3499ad6312070b10bb113.zip packages_apps_ThemeChooser-46c47f62bb158ffd46e3499ad6312070b10bb113.tar.gz packages_apps_ThemeChooser-46c47f62bb158ffd46e3499ad6312070b10bb113.tar.bz2 |
Use Lato font on Animated Lock Screen thumbnail text
To be consistent with the rest of the text views in the chooser,
we need to use Lato font on the animated lock screen thumbnail
(rather than Roboto as initially requested).
In order to reuse as much code as possible, LatoTextView is now
extending FittedTextView. A new attribute 'autoFitText' is
introduced to instruct whether fitted text is desired.
Change-Id: I3209fe7f06177bc4025cbf964d0c2dd79325b9c0
TICKET: CHOOSER-113
Diffstat (limited to 'res/layout/wallpaper_component_selection_item.xml')
-rw-r--r-- | res/layout/wallpaper_component_selection_item.xml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/res/layout/wallpaper_component_selection_item.xml b/res/layout/wallpaper_component_selection_item.xml index e36ec0a..7f1428c 100644 --- a/res/layout/wallpaper_component_selection_item.xml +++ b/res/layout/wallpaper_component_selection_item.xml @@ -3,6 +3,7 @@ Copyright (C) 2014 Cyanogen, Inc. --> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:cyngn="http://schemas.android.com/apk/res/com.cyngn.theme.chooser" android:orientation="vertical" android:layout_width="wrap_content" android:layout_height="@dimen/component_selection_cell_height" @@ -31,16 +32,17 @@ android:background="@android:color/white" android:layout_gravity="center_horizontal|bottom" android:visibility="gone"> - <com.cyngn.theme.widget.FittedTextView + <com.cyngn.theme.widget.LatoTextView android:layout_width="@dimen/animated_lock_screen_text_width" android:layout_height="@dimen/animated_lock_screen_text_height" android:includeFontPadding="false" - android:gravity="center" + android:layout_gravity="center_horizontal" android:layout_marginLeft="@dimen/animated_lock_screen_text_margin_left" android:layout_marginRight="@dimen/animated_lock_screen_text_margin_right" android:layout_marginTop="@dimen/animated_lock_screen_text_margin_top" android:layout_marginBottom="@dimen/animated_lock_screen_text_margin_bottom" style="@style/animated_lock_screen_badge_text_style" + cyngn:autoFitText="true" android:text="@string/animated_lock_screen_badge_text"/> </LinearLayout> </FrameLayout> @@ -52,4 +54,4 @@ android:layout_gravity="center_horizontal" style="@style/component_title"/> -</LinearLayout>
\ No newline at end of file +</LinearLayout> |