Popups (shortcut, system, scroller) / Drop Targets / Widgets (bottom/full) should follow themed font
Bug: 126229665 Change-Id: I429da6b9bc5f99d42be0f2498cbdecb059f127f4
This commit is contained in:
parent
0d7b0159b3
commit
df4bf92412
|
@ -33,7 +33,6 @@
|
|||
android:drawablePadding="@dimen/deep_shortcut_drawable_padding"
|
||||
android:textSize="14sp"
|
||||
android:textColor="?android:attr/textColorPrimary"
|
||||
android:fontFamily="sans-serif"
|
||||
launcher:layoutHorizontal="true"
|
||||
launcher:iconDisplay="shortcut_popup"
|
||||
launcher:iconSizeOverride="@dimen/deep_shortcut_icon_size" />
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
android:paddingEnd="@dimen/popup_padding_end"
|
||||
android:textSize="14sp"
|
||||
android:textColor="?android:attr/textColorPrimary"
|
||||
android:fontFamily="sans-serif"
|
||||
launcher:iconDisplay="shortcut_popup"
|
||||
launcher:layoutHorizontal="true"
|
||||
android:focusable="false" />
|
||||
|
|
|
@ -34,7 +34,6 @@
|
|||
android:layout_weight="1"
|
||||
android:ellipsize="end"
|
||||
android:fadingEdge="horizontal"
|
||||
android:fontFamily="sans-serif-condensed"
|
||||
android:gravity="start"
|
||||
android:singleLine="true"
|
||||
android:maxLines="1"
|
||||
|
@ -51,7 +50,6 @@
|
|||
android:layout_marginLeft="5dp"
|
||||
android:textColor="?android:attr/textColorSecondary"
|
||||
android:textSize="14sp"
|
||||
android:fontFamily="sans-serif-condensed"
|
||||
android:alpha="0.8" />
|
||||
</LinearLayout>
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
android:theme="?attr/widgetsTheme">
|
||||
|
||||
<TextView
|
||||
style="@style/TextTitle"
|
||||
style="@style/TextHeadline"
|
||||
android:id="@+id/title"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
android:scrollbars="none">
|
||||
<LinearLayout
|
||||
android:id="@+id/widgets_cell_list"
|
||||
style="@style/TextTitle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingStart="0dp"
|
||||
|
|
|
@ -126,7 +126,7 @@
|
|||
|
||||
<style name="WidgetContainerTheme.Dark" />
|
||||
|
||||
<style name="FastScrollerPopup" parent="@android:style/TextAppearance.DeviceDefault">
|
||||
<style name="FastScrollerPopup" parent="@android:style/TextAppearance.DeviceDefault.DialogWindowTitle">
|
||||
<item name="android:layout_width">wrap_content</item>
|
||||
<item name="android:minWidth">@dimen/fastscroll_popup_width</item>
|
||||
<item name="android:layout_height">@dimen/fastscroll_popup_height</item>
|
||||
|
@ -173,7 +173,7 @@
|
|||
</style>
|
||||
|
||||
<!-- Drop targets -->
|
||||
<style name="DropTargetButtonBase">
|
||||
<style name="DropTargetButtonBase" parent="@android:style/TextAppearance.DeviceDefault">
|
||||
<item name="android:drawablePadding">7.5dp</item>
|
||||
<item name="android:paddingLeft">16dp</item>
|
||||
<item name="android:paddingRight">16dp</item>
|
||||
|
@ -189,6 +189,8 @@
|
|||
|
||||
<style name="DropTargetButton" parent="DropTargetButtonBase" />
|
||||
|
||||
<style name="TextHeadline" parent="@android:style/TextAppearance.DeviceDefault.DialogWindowTitle" />
|
||||
|
||||
<style name="TextTitle" parent="@android:style/TextAppearance.DeviceDefault" />
|
||||
|
||||
<style name="AllAppsEmptySearchBackground">
|
||||
|
|
Loading…
Reference in New Issue