summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
Diffstat (limited to 'res')
-rw-r--r--res/drawable/option_border.xml2
-rw-r--r--res/layout/fragment_custom_theme_component.xml9
-rw-r--r--res/values/dimens.xml4
-rwxr-xr-xres/values/strings.xml5
4 files changed, 3 insertions, 17 deletions
diff --git a/res/drawable/option_border.xml b/res/drawable/option_border.xml
index e715fcdf..7221f95b 100644
--- a/res/drawable/option_border.xml
+++ b/res/drawable/option_border.xml
@@ -15,6 +15,6 @@
-->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
- <stroke android:color="@color/option_border_color" android:width="2dp" />
+ <stroke android:color="@color/option_border_color" android:width="@dimen/option_border_width" />
<corners android:radius="4dp" />
</shape>
diff --git a/res/layout/fragment_custom_theme_component.xml b/res/layout/fragment_custom_theme_component.xml
index fb264325..4acc8847 100644
--- a/res/layout/fragment_custom_theme_component.xml
+++ b/res/layout/fragment_custom_theme_component.xml
@@ -36,14 +36,6 @@
android:layout_marginTop="@dimen/preview_page_top_margin"
android:layout_marginBottom="@dimen/component_preview_page_bottom_margin"
layout="@layout/theme_preview_card"/>
- <TextView
- android:id="@+id/component_step_counter"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="bottom|center_horizontal"
- android:layout_marginVertical="10dp"
- android:textAlignment="center"
- android:textAppearance="@style/ComponentCounterTextAppearance"/>
</FrameLayout>
<LinearLayout
@@ -68,7 +60,6 @@
android:layout_height="@dimen/options_container_height"
android:layout_gravity="center_horizontal"/>
-
</LinearLayout>
</LinearLayout>
diff --git a/res/values/dimens.xml b/res/values/dimens.xml
index f17f3443..bd03aa81 100644
--- a/res/values/dimens.xml
+++ b/res/values/dimens.xml
@@ -34,7 +34,7 @@
<dimen name="preview_page_horizontal_margin">56dp</dimen>
<dimen name="preview_page_top_margin">16dp</dimen>
<dimen name="preview_page_bottom_margin">2dp</dimen>
- <dimen name="component_preview_page_bottom_margin">36dp</dimen>
+ <dimen name="component_preview_page_bottom_margin">16dp</dimen>
<!-- Dimensions for the customization option tiles -->
<dimen name="options_container_height">100dp</dimen>
@@ -83,7 +83,7 @@
<dimen name="component_color_chip_size">42dp</dimen>
<dimen name="component_shape_thumb_size">72dp</dimen>
- <dimen name="component_shape_border_width">3dp</dimen>
+ <dimen name="option_border_width">2dp</dimen>
<!-- For a corner radius of this size or larger, we'll preview a rounded qsb widget. -->
<dimen name="roundCornerThreshold">16dp</dimen>
diff --git a/res/values/strings.xml b/res/values/strings.xml
index fd7233b3..07235421 100755
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -132,13 +132,8 @@
<!-- Title of a set of icons that the user can chose for their custom style (eg, "Icons 2") -->
<string name="icon_component_label">Icons <xliff:g name="component_number" example="1">%1$d</xliff:g></string>
-
<string name="font_component_option_thumbnail" translatable="false">A</string>
- <!-- Text explaining what the current step is in setting a custom theme, eg: "1 of 4".
- [CHAR_LIMIT=40] -->
- <string name="component_step_counter"><xliff:g name="current_step" example="1">%1$d</xliff:g> of <xliff:g name="total_steps" example="4">%2$d</xliff:g></string>
-
<!-- Dialog box asking the user to confirm if they want to delete the current custom style
[CHAR_LIMIT=NONE] -->
<string name="delete_custom_theme_confirmation">Delete Custom style?</string>