summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/DynamicGridSizeFragment.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/launcher3/DynamicGridSizeFragment.java')
-rw-r--r--src/com/android/launcher3/DynamicGridSizeFragment.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/com/android/launcher3/DynamicGridSizeFragment.java b/src/com/android/launcher3/DynamicGridSizeFragment.java
index 2fda39f2a..586c2bd49 100644
--- a/src/com/android/launcher3/DynamicGridSizeFragment.java
+++ b/src/com/android/launcher3/DynamicGridSizeFragment.java
@@ -135,7 +135,7 @@ public class DynamicGridSizeFragment extends Fragment implements NumberPicker.On
int rows = mCustomGridRows == 0 ? (int) grid.numRows : mCustomGridRows;
int columns = mCustomGridColumns == 0 ? (int) grid.numColumns : mCustomGridColumns;
- String text = rows + " x " + columns;
+ String text = rows + " " + "\u00d7" + " " + columns;
Bitmap bm = BitmapFactory.decodeResource(getResources(),
drawableId).copy(Bitmap.Config.ARGB_8888, true);
@@ -318,7 +318,7 @@ public class DynamicGridSizeFragment extends Fragment implements NumberPicker.On
SettingsProvider.SETTINGS_UI_HOMESCREEN_ROWS, grid.numRowsBase);
int columns = SettingsProvider.getIntCustomDefault(getActivity(),
SettingsProvider.SETTINGS_UI_HOMESCREEN_COLUMNS, grid.numColumnsBase);
- state += "(" + rows + "x" + columns + ")";
+ state += " " + "(" + rows + " " + "\u00d7" + " " + columns + ")";
textView.setText(state);
}
@@ -328,4 +328,4 @@ public class DynamicGridSizeFragment extends Fragment implements NumberPicker.On
return convertView;
}
}
-} \ No newline at end of file
+}