This change includes - * Using SettingsLib.CardPreferenceWidget in storage dashboard * Using material theme color for progress bar Test: manual BUG: 349670985 Flag: com.android.settingslib.widget.theme.flags.is_expressive_design_enabled Change-Id: Ib86ec9d1713316dd3dd3067c2cce87c89e15d9e0
17 lines
616 B
XML
17 lines
616 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item android:id="@android:id/background">
|
|
<shape>
|
|
<corners android:radius="8dp" />
|
|
<solid android:color="@color/settingslib_materialColorSurfaceContainerHighest" />
|
|
</shape>
|
|
</item>
|
|
<item android:id="@android:id/progress">
|
|
<clip>
|
|
<shape>
|
|
<corners android:radius="8dp" />
|
|
<solid android:color="@color/settingslib_materialColorPrimary" />
|
|
</shape>
|
|
</clip>
|
|
</item>
|
|
</layer-list> |