() {
- }.getType();
- Gson gson = new Gson();
- AppTimeinfo appTimeinfo = gson.fromJson(jsonString, type);
- return appTimeinfo;
- }
-
- synchronized private void setAppTimeinfo() {
- String jsonString = JsonParser.parseString(appTimeinfo.toString()).getAsJsonObject().toString();
- Settings.System.putString(mContext.getContentResolver(), "runningAppInfo", jsonString);
- }
-
- private static final long DAY_TIME = 1000 * 60 * 60 * 24;
-
- public boolean isNormalTime() {
- long nowTime = System.currentTimeMillis();
- String nowTimeString = ruleSDF.format(new Date(nowTime)); // 时间戳转换日期
- try {
- Date startDate = ruleSDF.parse(normalStartTime);
- Date endDate = ruleSDF.parse(unusualStartTime);
- Date now = ruleSDF.parse(nowTimeString);
- Log.e(TAG, "isScreenshot: startDate = " + startDate);
- Log.e(TAG, "isScreenshot: endDate = " + endDate);
- Log.e(TAG, "isScreenshot: now = " + now);
- if (startDate.getTime() <= now.getTime() && now.getTime() <= endDate.getTime()) {
- return true;
- } else if (endDate.getTime() < now.getTime() && now.getTime() <= startDate.getTime() + DAY_TIME) {
- return false;
- }
- } catch (ParseException e) {
- e.printStackTrace();
- Log.e(TAG, "isScreenshot: " + e.getMessage());
- }
- return false;
- }
-
-
-}
diff --git a/app/src/main/java/com/uiui/zyos/utils/AppUtil.java b/app/src/main/java/com/uiui/zyos/utils/AppUtil.java
deleted file mode 100644
index 4e0a519..0000000
--- a/app/src/main/java/com/uiui/zyos/utils/AppUtil.java
+++ /dev/null
@@ -1,91 +0,0 @@
-/*
- * Copyright (C) 2012 www.amsoft.cn
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package com.uiui.zyos.utils;
-
-
-import android.app.ActivityManager;
-import android.content.Context;
-import android.util.Log;
-
-import java.io.BufferedReader;
-import java.io.FileReader;
-
-public class AppUtil {
- private static String TAG = AppUtil.class.getSimpleName();
-
- /**
- * 描述:获取可用内存.
- *
- * @param context
- * @return
- */
- public static long getAvailMemory(Context context) {
- // 获取android当前可用内存大小
- ActivityManager activityManager = (ActivityManager) context
- .getSystemService(Context.ACTIVITY_SERVICE);
- ActivityManager.MemoryInfo memoryInfo = new ActivityManager.MemoryInfo();
- activityManager.getMemoryInfo(memoryInfo);
- // 当前系统可用内存 ,将获得的内存大小规格化
-
- return memoryInfo.availMem;
- }
-
- /**
- * @param context
- * @return 可用的内存大小
- */
- public static long getFreeMemory(Context context) {
- ActivityManager activityManager = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
- ActivityManager.MemoryInfo memoryInfo = new ActivityManager.MemoryInfo();
- activityManager.getMemoryInfo(memoryInfo);
- long freeMem = memoryInfo.totalMem - memoryInfo.availMem;
-// Log.e("getHardware", "getFreeMemory: " + freeMem);
- return freeMem;
- }
-
- /**
- * 描述:总内存.
- *
- * @param context
- * @return
- */
- public static long getTotalMemory(Context context) {
- // 系统内存信息文件
- String file = "/proc/meminfo";
- String memInfo;
- String[] strs;
- long memory = 0;
-
- try {
- FileReader fileReader = new FileReader(file);
- BufferedReader bufferedReader = new BufferedReader(fileReader, 8192);
- // 读取meminfo第一行,系统内存大小
- memInfo = bufferedReader.readLine();
- strs = memInfo.split("\\s+");
- for (String str : strs) {
- Log.e(TAG, "getTotalMemory: " + str + "\t");
- }
- // 获得系统总内存,单位KB
- memory = Integer.valueOf(strs[1]).intValue();
- bufferedReader.close();
- } catch (Exception e) {
- e.printStackTrace();
- }
- // Byte转位KB或MB
- return memory * 1024;
- }
-
-}
diff --git a/app/src/main/java/com/uiui/zyos/utils/BitmapUtils.java b/app/src/main/java/com/uiui/zyos/utils/BitmapUtils.java
deleted file mode 100644
index 6ce1589..0000000
--- a/app/src/main/java/com/uiui/zyos/utils/BitmapUtils.java
+++ /dev/null
@@ -1,72 +0,0 @@
-package com.uiui.zyos.utils;
-
-import android.content.Context;
-import android.graphics.Bitmap;
-import android.graphics.BitmapFactory;
-import android.graphics.Canvas;
-import android.graphics.PixelFormat;
-import android.graphics.drawable.AdaptiveIconDrawable;
-import android.graphics.drawable.BitmapDrawable;
-import android.graphics.drawable.Drawable;
-import android.os.Build;
-
-import java.io.ByteArrayOutputStream;
-
-public class BitmapUtils {
- public static Bitmap Bytes2Bimap(byte[] b) {
- if (b.length != 0) {
- return BitmapFactory.decodeByteArray(b, 0, b.length);
- } else {
- return null;
- }
- }
-
- public static byte[] Bitmap2Bytes(Bitmap bitmap) {
- ByteArrayOutputStream baos = new ByteArrayOutputStream();
- bitmap.compress(Bitmap.CompressFormat.PNG, 100, baos);
- byte[] data = baos.toByteArray();
- return data;
- }
-
- /**
- * Drawable转换成一个Bitmap
- *
- * @param drawable drawable对象
- * @return
- */
- public static final Bitmap drawableToBitmap(Drawable drawable) {
- Bitmap bitmap = Bitmap.createBitmap(drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight(),
- drawable.getOpacity() != PixelFormat.OPAQUE ? Bitmap.Config.ARGB_8888 : Bitmap.Config.RGB_565);
- Canvas canvas = new Canvas(bitmap);
- drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
- drawable.draw(canvas);
- return bitmap;
- }
-
-
- public static Bitmap drawableToBitamp(Drawable drawable) {
- Bitmap bitmap;
- BitmapDrawable bd = (BitmapDrawable) drawable;
- bitmap = bd.getBitmap();
- return bitmap;
- }
-
- public static Bitmap getIconBitmap(Context context, Drawable drawable) {
- try {
- if (drawable == null) {
- return null;
- }
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O && drawable instanceof AdaptiveIconDrawable) {
- Bitmap bitmap = Bitmap.createBitmap(drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight(), Bitmap.Config.ARGB_8888);
- Canvas canvas = new Canvas(bitmap);
- drawable.setBounds(0, 0, canvas.getWidth(), canvas.getHeight());
- drawable.draw(canvas);
- return Utils.getRoundedBitmap(bitmap, context);
- } else {
- return Utils.getRoundedBitmap(((BitmapDrawable) drawable).getBitmap(), context);
- }
- } catch (Exception e) {
- return null;
- }
- }
-}
diff --git a/app/src/main/java/com/uiui/zyos/utils/BrightnessUtils.java b/app/src/main/java/com/uiui/zyos/utils/BrightnessUtils.java
deleted file mode 100644
index 5ad618f..0000000
--- a/app/src/main/java/com/uiui/zyos/utils/BrightnessUtils.java
+++ /dev/null
@@ -1,142 +0,0 @@
-
-/*
- * Copyright (C) 2018 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package com.uiui.zyos.utils;
-
-import android.util.MathUtils;
-
-public class BrightnessUtils {
-
- public static final int GAMMA_SPACE_MIN = 0;
- public static final int GAMMA_SPACE_MAX = 65535;
-
- // Hybrid Log Gamma constant values
- private static final float R = 0.5f;
- private static final float A = 0.17883277f;
- private static final float B = 0.28466892f;
- private static final float C = 0.55991073f;
-
- /**
- * A function for converting from the gamma space that the slider works in to the
- * linear space that the setting works in.
- *
- * The gamma space effectively provides us a way to make linear changes to the slider that
- * result in linear changes in perception. If we made changes to the slider in the linear space
- * then we'd see an approximately logarithmic change in perception (c.f. Fechner's Law).
- *
- * Internally, this implements the Hybrid Log Gamma electro-optical transfer function, which is
- * a slight improvement to the typical gamma transfer function for displays whose max
- * brightness exceeds the 120 nit reference point, but doesn't set a specific reference
- * brightness like the PQ function does.
- *
- * Note that this transfer function is only valid if the display's backlight value is a linear
- * control. If it's calibrated to be something non-linear, then a different transfer function
- * should be used.
- *
- * @param val The slider value.
- * @param min The minimum acceptable value for the setting.
- * @param max The maximum acceptable value for the setting.
- * @return The corresponding setting value.
- */
- public static final int convertGammaToLinear(int val, int min, int max) {
- final float normalizedVal = MathUtils.norm(GAMMA_SPACE_MIN, GAMMA_SPACE_MAX, val);
- final float ret;
- if (normalizedVal <= R) {
- ret = MathUtils.sq(normalizedVal / R);
- } else {
- ret = MathUtils.exp((normalizedVal - C) / A) + B;
- }
-
- // HLG is normalized to the range [0, 12], so we need to re-normalize to the range [0, 1]
- // in order to derive the correct setting value.
- return Math.round(MathUtils.lerp(min, max, ret / 12));
- }
-
- /**
- * Version of {@link #convertGammaToLinear} that takes and returns float values.
- * TODO(flc): refactor Android Auto to use float version
- *
- * @param val The slider value.
- * @param min The minimum acceptable value for the setting.
- * @param max The maximum acceptable value for the setting.
- * @return The corresponding setting value.
- */
- public static final float convertGammaToLinearFloat(int val, float min, float max) {
- final float normalizedVal = MathUtils.norm(GAMMA_SPACE_MIN, GAMMA_SPACE_MAX, val);
- final float ret;
- if (normalizedVal <= R) {
- ret = MathUtils.sq(normalizedVal / R);
- } else {
- ret = MathUtils.exp((normalizedVal - C) / A) + B;
- }
-
- // HLG is normalized to the range [0, 12], ensure that value is within that range,
- // it shouldn't be out of bounds.
- final float normalizedRet = MathUtils.constrain(ret, 0, 12);
-
- // Re-normalize to the range [0, 1]
- // in order to derive the correct setting value.
- return MathUtils.lerp(min, max, normalizedRet / 12);
- }
-
- /**
- * A function for converting from the linear space that the setting works in to the
- * gamma space that the slider works in.
- *
- * The gamma space effectively provides us a way to make linear changes to the slider that
- * result in linear changes in perception. If we made changes to the slider in the linear space
- * then we'd see an approximately logarithmic change in perception (c.f. Fechner's Law).
- *
- * Internally, this implements the Hybrid Log Gamma opto-electronic transfer function, which is
- * a slight improvement to the typical gamma transfer function for displays whose max
- * brightness exceeds the 120 nit reference point, but doesn't set a specific reference
- * brightness like the PQ function does.
- *
- * Note that this transfer function is only valid if the display's backlight value is a linear
- * control. If it's calibrated to be something non-linear, then a different transfer function
- * should be used.
- *
- * @param val The brightness setting value.
- * @param min The minimum acceptable value for the setting.
- * @param max The maximum acceptable value for the setting.
- * @return The corresponding slider value
- */
- public static final int convertLinearToGamma(int val, int min, int max) {
- return convertLinearToGammaFloat((float) val, (float) min, (float) max);
- }
-
- /**
- * Version of {@link #convertLinearToGamma} that takes float values.
- * TODO: brightnessfloat merge with above method(?)
- *
- * @param val The brightness setting value.
- * @param min The minimum acceptable value for the setting.
- * @param max The maximum acceptable value for the setting.
- * @return The corresponding slider value
- */
- public static final int convertLinearToGammaFloat(float val, float min, float max) {
- // For some reason, HLG normalizes to the range [0, 12] rather than [0, 1]
- final float normalizedVal = MathUtils.norm(min, max, val) * 12;
- final float ret;
- if (normalizedVal <= 1f) {
- ret = MathUtils.sqrt(normalizedVal) * R;
- } else {
- ret = A * MathUtils.log(normalizedVal - B) + C;
- }
-
- return Math.round(MathUtils.lerp(GAMMA_SPACE_MIN, GAMMA_SPACE_MAX, ret));
- }
-}
diff --git a/app/src/main/java/com/uiui/zyos/utils/DataUtil.java b/app/src/main/java/com/uiui/zyos/utils/DataUtil.java
deleted file mode 100644
index 5f6d362..0000000
--- a/app/src/main/java/com/uiui/zyos/utils/DataUtil.java
+++ /dev/null
@@ -1,38 +0,0 @@
-package com.uiui.zyos.utils;
-
-import java.text.SimpleDateFormat;
-import java.util.Date;
-
-/**
- * 作者 mjsheng
- * 日期 2018/8/31 09:50
- * 邮箱 501802639@qq.com
- * 来自:
- */
-
-public class DataUtil {
- private static SimpleDateFormat day = new SimpleDateFormat("yyyy-MM-dd HH:mm");
- private static SimpleDateFormat hour = new SimpleDateFormat("HH:mm");
- private static SimpleDateFormat minute = new SimpleDateFormat("mm");
-
- /**
- * 格式化日期(精确到天)
- */
- public static String formatDateDay() {
- return day.format(new Date());
- }
-
- /**
- * 格式化日期(hour)
- */
- public static String formatDateHour() {
- return hour.format(new Date());
- }
-
- /**
- * 格式化日期(minute)
- */
- public static String formatDateMinute() {
- return minute.format(new Date());
- }
-}
diff --git a/app/src/main/java/com/uiui/zyos/utils/DimenTool.java b/app/src/main/java/com/uiui/zyos/utils/DimenTool.java
new file mode 100644
index 0000000..afd200f
--- /dev/null
+++ b/app/src/main/java/com/uiui/zyos/utils/DimenTool.java
@@ -0,0 +1,183 @@
+package com.uiui.zyos.utils;
+
+import java.io.BufferedReader;
+import java.io.BufferedWriter;
+import java.io.File;
+import java.io.FileReader;
+import java.io.FileWriter;
+import java.io.IOException;
+import java.io.PrintWriter;
+
+/**
+ * Created by Administrator on 2016/11/25.
+ * 华为版本 sw480 的内容替换成sw400
+ */
+
+public class DimenTool {
+
+ public static void gen() {
+
+ File file = new File("./app/src/main/res/values/dimens.xml");
+ BufferedReader reader = null;
+ StringBuilder sw320 = new StringBuilder();
+ StringBuilder sw360 = new StringBuilder();
+ StringBuilder sw400 = new StringBuilder();
+ StringBuilder sw460 = new StringBuilder();
+ StringBuilder sw480 = new StringBuilder();
+ StringBuilder sw560 = new StringBuilder();
+ StringBuilder sw600 = new StringBuilder();
+ StringBuilder sw609 = new StringBuilder();
+ StringBuilder sw640 = new StringBuilder();
+ StringBuilder sw720 = new StringBuilder();
+ StringBuilder sw760 = new StringBuilder();
+ StringBuilder sw800 = new StringBuilder();
+ StringBuilder sw860 = new StringBuilder();
+ StringBuilder sw900 = new StringBuilder();
+// StringBuilder mdpi = new StringBuilder();
+// StringBuilder hdpi = new StringBuilder();
+// StringBuilder xhdpi = new StringBuilder();
+// StringBuilder xxhdpi = new StringBuilder();
+
+
+ try {
+ System.out.println("生成不同分辨率:");
+ reader = new BufferedReader(new FileReader(file));
+ String tempString;
+ int line = 1;
+ // 一次读入一行,直到读入null为文件结束
+
+ java.text.DecimalFormat df = new java.text.DecimalFormat("#.##");
+ while ((tempString = reader.readLine()) != null) {
+
+ if (tempString.contains("")) {
+ //tempString = tempString.replaceAll(" ", "");
+ String start = tempString.substring(0, tempString.indexOf(">") + 1);
+ String end = tempString.substring(tempString.lastIndexOf("<") - 2);
+ double num = Double.valueOf(tempString.substring(tempString.indexOf(">") + 1, tempString.indexOf("") - 2));
+
+ sw320.append(start).append(df.format((double) num * 0.4)).append(end).append("\n");
+ sw360.append(start).append(df.format((double) num * 0.45)).append(end).append("\n");
+ sw400.append(start).append(df.format((double) num * 0.5)).append(end).append("\n");
+ sw460.append(start).append(df.format((double) num * 0.575)).append(end).append("\n");
+ sw480.append(start).append(df.format((double) num * 0.6)).append(end).append("\n");
+
+
+ sw560.append(start).append(df.format((double) num * 0.7)).append(end).append("\n");
+ sw600.append(start).append(df.format((double) num * 0.75)).append(end).append("\n");
+ sw609.append(start).append(df.format((double) num * 0.76125)).append(end).append("\n");
+ sw640.append(start).append(df.format((double) num * 0.85)).append(end).append("\n"); // 适配学仕宝
+ sw720.append(start).append(df.format((double) num * 0.9)).append(end).append("\n");
+ sw760.append(start).append(df.format((double) num * 0.95)).append(end).append("\n");
+ sw800.append(tempString).append("\n");
+ sw860.append(start).append(df.format((double) num * 1.06)).append(end).append("\n");
+ sw900.append(start).append(df.format((double) num * 1.125)).append(end).append("\n");
+
+// mdpi.append(start).append(df.format((double) num * 0.75)).append(end).append("\n");
+// hdpi.append(start).append(df.format((double) num * 1)).append(end).append("\n");
+// xhdpi.append(start).append(df.format((double) num * 1.5)).append(end).append("\n");
+// xxhdpi.append(start).append(df.format((double) num * 2)).append(end).append("\n");
+
+ } else {
+ sw320.append(tempString).append("\n");
+ sw360.append(tempString).append("\n");
+ sw400.append(tempString).append("\n");
+ sw460.append(tempString).append("\n");
+ sw480.append(tempString).append("\n");
+ sw560.append(tempString).append("\n");
+ sw600.append(tempString).append("\n");
+ sw609.append(tempString).append("\n");
+ sw640.append(tempString).append("\n");
+ sw760.append(tempString).append("\n");
+ sw720.append(tempString).append("\n");
+ sw800.append(tempString).append("\n");
+ sw860.append(tempString).append("\n");
+ sw900.append(tempString).append("\n");
+// mdpi.append(tempString).append("\n");
+// hdpi.append(tempString).append("\n");
+// xhdpi.append(tempString).append("\n");
+// xxhdpi.append(tempString).append("\n");
+ }
+ line++;
+ }
+ reader.close();
+ System.out.println("");
+ System.out.println(sw480);
+ System.out.println("");
+ System.out.println(sw600);
+
+ System.out.println("");
+ System.out.println(sw720);
+ System.out.println("");
+ System.out.println(sw800);
+
+ String sw320file = "./app/src/main/res/values-sw310dp/dimens.xml";
+ String sw360file = "./app/src/main/res/values-sw350dp/dimens.xml";
+ String sw400file = "./app/src/main/res/values-sw390dp/dimens.xml";
+ String sw460file = "./app/src/main/res/values-sw450dp/dimens.xml";
+ String sw480file = "./app/src/main/res/values-sw470dp/dimens.xml";
+ String sw560file = "./app/src/main/res/values-sw550dp/dimens.xml";
+ String sw600file = "./app/src/main/res/values-sw500dp/dimens.xml";
+ String sw609file = "./app/src/main/res/values-sw609dp/dimens.xml";
+ String sw640file = "./app/src/main/res/values-sw630dp/dimens.xml";
+ String sw720file = "./app/src/main/res/values-sw710dp/dimens.xml";
+ String sw760file = "./app/src/main/res/values-sw760dp/dimens.xml";
+ String sw800file = "./app/src/main/res/values-sw800dp/dimens.xml";
+ String sw860file = "./app/src/main/res/values-sw850dp/dimens.xml";
+ String sw900file = "./app/src/main/res/values-sw890dp/dimens.xml";
+// String mdpifile = "./app/src/main/res/values-mdpi/dimens.xml";
+// String hdpifile = "./app/src/main/res/values-hdpi/dimens.xml";
+// String xhdpifile = "./app/src/main/res/values-xhdpi/dimens.xml";
+// String xxhdpifile = "./app/src/main/res/values-xxhdpi/dimens.xml";
+ writeFile(sw320file, sw320.toString());
+ writeFile(sw360file, sw360.toString());
+ writeFile(sw400file, sw400.toString());
+ writeFile(sw460file, sw460.toString());
+ writeFile(sw480file, sw480.toString());
+ writeFile(sw560file, sw560.toString());
+ writeFile(sw600file, sw600.toString());
+
+ writeFile(sw609file, sw609.toString());
+
+ writeFile(sw640file, sw640.toString());
+ writeFile(sw720file, sw720.toString());
+ writeFile(sw760file, sw720.toString());
+ writeFile(sw800file, sw800.toString());
+ writeFile(sw860file, sw860.toString());
+ writeFile(sw900file, sw900.toString());
+// writeFile(mdpifile, mdpi.toString());
+// writeFile(hdpifile, hdpi.toString());
+// writeFile(xhdpifile, xhdpi.toString());
+// writeFile(xxhdpifile, xxhdpi.toString());
+ } catch (IOException e) {
+ e.printStackTrace();
+ } finally {
+ if (reader != null) {
+ try {
+ reader.close();
+ } catch (IOException e1) {
+ e1.printStackTrace();
+ }
+ }
+ }
+ }
+
+ public static void writeFile(String file, String text) {
+ PrintWriter out = null;
+ try {
+ File file1 = new File(file.replace("/dimens.xml","").trim());
+ if (!file1.exists()) {
+ file1.mkdirs();
+ }
+ out = new PrintWriter(new BufferedWriter(new FileWriter(file)));
+ out.println(text);
+ } catch (IOException e) {
+ e.printStackTrace();
+ }
+
+ out.close();
+ }
+
+ public static void main(String[] args) {
+ gen();
+ }
+}
\ No newline at end of file
diff --git a/app/src/main/java/com/uiui/zyos/utils/FileUtil.java b/app/src/main/java/com/uiui/zyos/utils/FileUtil.java
deleted file mode 100644
index 8debaeb..0000000
--- a/app/src/main/java/com/uiui/zyos/utils/FileUtil.java
+++ /dev/null
@@ -1,54 +0,0 @@
-package com.uiui.zyos.utils;
-
-import android.text.TextUtils;
-
-import java.util.HashSet;
-
-public class FileUtil {
- public static String getFileType(String url) {
- if (url.indexOf("/") == -1) {
- return url.substring(url.indexOf("."), url.length());
- } else {
- String fileName = url.substring(url.lastIndexOf("/"));
- return fileName.substring(fileName.indexOf("."), fileName.length());
- }
- }
-
- private static HashSet videoFormat = new HashSet() {{
- this.add(".mp4");
- this.add(".avi");
- this.add(".nkv");
- this.add(".flv");
- }};
- private static HashSet pictureFormat = new HashSet() {{
- this.add(".png");
- this.add(".jpg");
- this.add(".jpeg");
- this.add(".bmp");
- }};
-
- public static boolean isVideoFile(String fileName) {
- if (TextUtils.isEmpty(fileName)) {
- return false;
- } else {
- if (!fileName.startsWith(".")) {
- return videoFormat.contains(getFileType(fileName));
- } else {
- return videoFormat.contains(fileName);
- }
- }
- }
-
- public static boolean isPictureFile(String fileName) {
- if (TextUtils.isEmpty(fileName)) {
- return false;
- } else {
- if (!fileName.startsWith(".")) {
- return pictureFormat.contains(getFileType(fileName));
- } else {
- return pictureFormat.contains(fileName);
- }
- }
- }
-
-}
diff --git a/app/src/main/java/com/uiui/zyos/utils/IconUtils.java b/app/src/main/java/com/uiui/zyos/utils/IconUtils.java
deleted file mode 100644
index c4e50d9..0000000
--- a/app/src/main/java/com/uiui/zyos/utils/IconUtils.java
+++ /dev/null
@@ -1,128 +0,0 @@
-package com.uiui.zyos.utils;
-
-import android.util.Log;
-
-import java.util.ArrayList;
-import java.util.List;
-
-public class IconUtils {
- public static List appClassNameList = new ArrayList() {{
- this.add("com.uiui.sn");//设别信息
- this.add("com.uiui.appstore");//应用市场
- this.add("com.uiui.weather");//天气
- this.add("com.android.browser");//浏览器
- this.add("com.uiui.browser");//浏览器
- this.add("com.aoleyun.browser");//浏览器
- this.add("com.android.calculator2");//计算器
- this.add("com.android.calendar");//日历
- this.add("com.android.camera");//相机
- this.add("com.mediatek.camera");//相机
- this.add("com.android.camera2");//相机
- this.add("com.android.contacts");//通讯录
- this.add("com.android.deskclock");//时钟
- this.add("com.android.dialer");//电话
- this.add("com.android.dialer");//电话
- this.add("com.android.gallery3d");//图库
- this.add("com.android.mms");//信息
- this.add("com.android.mms.ui");//信息
- this.add("com.android.messaging");//信息
- this.add("com.android.music");//音乐
- this.add("com.android.providers.downloads.ui");//下载
- this.add("com.android.quicksearchbox");//搜索
- this.add("com.android.settings");//设置
- this.add("com.android.soundrecorder");//录音机
- this.add("com.android.stk.StkMain");//sim卡
- this.add("com.android.stk");//sim卡
- this.add("com.android.vdieo");//视频
- this.add("com.mediatek.filemanager");//文件管理
- this.add("com.android.documentsui");//下载
- this.add("com.mediatek.fmradio");//收音机
- this.add("com.android.fmradio");//收音机
- this.add("com.android.email");//电子邮件
-// this.add("com.ss.android.ugc.aweme");//抖音
-// this.add("com.ss.android.article.news");//头条
-// this.add("com.tencent.mm");//微信
- }};
-
- public static List appIconList = new ArrayList() {{
- this.add("com_uiui_sn");
- this.add("com_android_appstore");
- this.add("com_uiui_weather");
- this.add("com_android_browser");
- this.add("com_android_browser");
- this.add("com_android_browser");
- this.add("com_android_calculator2");
- this.add("com_android_calendar");
- this.add("com_android_camera");
- this.add("com_android_camera");
- this.add("com_android_camera");
- this.add("com_android_contacts");
- this.add("com_android_deskclock");
- this.add("com_android_dialer");
- this.add("com_android_dialer");
- this.add("com_android_gallery3d_app");
- this.add("com_android_mms_ui");
- this.add("com_android_mms_ui");
- this.add("com_android_mms_ui");
- this.add("com_android_music");
- this.add("com_android_providers_downloads_ui");
- this.add("com_android_quicksearchbox");
- this.add("com_android_settings");
- this.add("com_android_soundrecorder");
- this.add("com_android_stk_stkmain");
- this.add("com_android_stk_stkmain");
- this.add("com_android_vdieo");
- this.add("com_mediatek_filemanager");
- this.add("com_mediatek_filemanager");
- this.add("com_mediatek_fmradio");
- this.add("com_mediatek_fmradio");//收音机
- this.add("com_android_email");
-// this.add("com_android_aweme2");
-// this.add("com_android_news2");
-// this.add("com_tencent_mm2");
- }};
-
- public static List appIconList2 = new ArrayList() {{
- this.add("com_uiui_sn2");
- this.add("com_android_appstore2");
- this.add("com_uiui_weather2");
- this.add("com_android_browser2");
- this.add("com_android_browser2");
- this.add("com_android_browser2");
- this.add("com_android_calculator2");
- this.add("com_android_calendar");
- this.add("com_android_camera2");
- this.add("com_android_camera2");
- this.add("com_android_camera2");
- this.add("com_android_contacts");
- this.add("com_android_deskclock");
- this.add("com_android_dialer2");
- this.add("com_android_dialer2");
- this.add("com_android_gallery3d_app2");
- this.add("com_android_mms_ui2");
- this.add("com_android_mms_ui2");
- this.add("com_android_mms_ui2");
- this.add("com_android_music");
- this.add("com_android_providers_downloads_ui");
- this.add("com_android_quicksearchbox");
- this.add("com_android_settings2");
- this.add("com_android_soundrecorder");
- this.add("com_android_stk_stkmain");
- this.add("com_android_stk_stkmain");
- this.add("com_android_vdieo");
- this.add("com_mediatek_filemanager");
- this.add("com_mediatek_filemanager");
- this.add("com_mediatek_fmradio");
- this.add("com_mediatek_fmradio");//收音机
- this.add("com_android_email");
- this.add("com_android_aweme2");
- this.add("com_android_news2");
- this.add("com_tencent_mm2");
- }};
-
- static {
- Log.e("IconUtils", "appClassNameList size: " + appClassNameList.size());
- Log.e("IconUtils", "appIconList size: " + appIconList.size());
- Log.e("IconUtils", "appIconList2 size: " + appIconList2.size());
- }
-}
diff --git a/app/src/main/java/com/uiui/zyos/utils/LauncherUtils.java b/app/src/main/java/com/uiui/zyos/utils/LauncherUtils.java
deleted file mode 100644
index ec2de76..0000000
--- a/app/src/main/java/com/uiui/zyos/utils/LauncherUtils.java
+++ /dev/null
@@ -1,142 +0,0 @@
-package com.uiui.zyos.utils;
-
-import android.app.role.RoleManager;
-import android.content.ComponentName;
-import android.content.Context;
-import android.content.Intent;
-import android.content.IntentFilter;
-import android.content.pm.PackageManager;
-import android.content.pm.ResolveInfo;
-import android.os.Build;
-import android.os.SystemProperties;
-import android.os.UserHandle;
-import android.text.TextUtils;
-import android.util.Log;
-
-import java.util.List;
-import java.util.concurrent.Executor;
-import java.util.function.Consumer;
-
-public class LauncherUtils {
- private static final String TAG = LauncherUtils.class.getSimpleName();
-
- public static void openLauncher3(Context context) {
- setDefaultDesktop(context, Launcher3, Launcher3Class);
- if (!ApkUtils.openPackage(context, Launcher3)) {
- setDefaultDesktop(context, Launcher3, Launcher3Class);
- gotoLauncher(context);
- }
- }
-
- public static void gotoLauncher(Context context) {
- Intent i = new Intent(Intent.ACTION_MAIN);
- i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); //android123提示如果是服务里调用,必须加入new task标识
- i.addCategory(Intent.CATEGORY_HOME);
- context.startActivity(i);
- }
-
- public static final String Launcher3 = "com.android.launcher3";
- public static final String Launcher3Class = "com.android.launcher3.Launcher";
-
- public static void setDefaultDesktop(Context context, String pkg, String className) {
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
- setRoleHolderAsUser(context, pkg);
- Log.e(TAG, "setDefaultDesktop: setRoleHolderAsUser");
- } else {
- //爱华设置,暂时屏蔽
-// setDefaultLauncher(mContext, pkg, className);
- Log.e(TAG, "setDefaultDesktop: setDefaultLauncher");
- }
-// String oldDesktop = (String) SPUtils.get(mContext, "default_launcher", "");
-// if (Objects.equals(oldDesktop, pkg)) {
-// Log.e(TAG, "setDefaultDesktop: " + "数据一致");
-// return;
-// }
- Intent intent = new Intent("setDefaultLauncher");
- intent.putExtra("package", pkg);
- intent.putExtra("className", className);
-// if (JGYUtils.getInstance().checkAppPlatform() == MTKPlatform) {
- Log.e(TAG, "setDefaultDesktop: MTK");
- //爱华定制
- intent.setComponent(new ComponentName("com.android.settings", "com.android.settings.AoleReceiver"));
- // TODO: 2022/7/6 有问题
- setDefaultLauncher(context, "com.android.transfer", "com.android.transfer.MainActivity");
- SystemProperties.set("persist.sys.launcher.pkgname", pkg);
- SystemProperties.set("persist.sys.launcher.classname", className);
-// }
- intent.setPackage("com.android.settings");
- context.sendBroadcast(intent);
-// ApkUtils.openPackage(mContext, pkg);
- Log.e(TAG, "setDefaultDesktop: " + pkg + ":" + className);
- Log.e(TAG, "setDefaultDesktop: " + "persist.sys.launcher.pkgname = " + SystemProperties.get("persist.sys.launcher.pkgname"));
- Log.e(TAG, "setDefaultDesktop: " + "persist.sys.launcher.classname = " + SystemProperties.get("persist.sys.launcher.classname"));
- }
-
- public static void setDefaultLauncher(Context context, String defPackageName, String defClassName) {
- try {
- if (!TextUtils.isEmpty(defPackageName) && !TextUtils.isEmpty(defClassName)) {
- IntentFilter filter = new IntentFilter();
- filter.addAction("android.intent.action.MAIN");
- filter.addCategory("android.intent.category.HOME");
- filter.addCategory("android.intent.category.DEFAULT");
- Intent intent = new Intent(Intent.ACTION_MAIN);
- intent.addCategory(Intent.CATEGORY_HOME);
- // 返回给定条件的所有ResolveInfo对象(本质上是Activity)
- List list = context.getPackageManager().queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);
- int bestMatch = 0;
- final int size = list.size();
- ComponentName[] set = new ComponentName[size];
- for (int i = 0; i < size; i++) {
- ResolveInfo ri = list.get(i);
- set[i] = new ComponentName(ri.activityInfo.packageName, ri.activityInfo.name);
- if (ri.match > bestMatch) {
- bestMatch = ri.match;
- }
- }
- ComponentName preActivity = new ComponentName(defPackageName, defClassName);
- context.getPackageManager().addPreferredActivity(filter, bestMatch, set, preActivity);
- }
- } catch (java.lang.SecurityException e) {
- e.printStackTrace();
- Log.e(TAG, "setDefaultLauncher: " + e.getMessage());
- }
- }
-
-
- public static void setRoleHolderAsUser(Context context, String packageName) {
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
- String roleName = "android.app.role.HOME";
- boolean add = true;
- int flags = 0;
- UserHandle user = android.os.Process.myUserHandle();
- Log.i("settingssssssstemf", (add ? "Adding" : "Removing") + " package as role holder, role: "
- + roleName + ", package: " + packageName);
-// if (JGYUtils.getInstance().checkAppPlatform() != JGYUtils.MTKPlatform) {
- RoleManager roleManager = context.getSystemService(RoleManager.class);
- Executor executor = context.getMainExecutor();
- Consumer callback = successful -> {
- if (successful) {
- Log.d("settingssssssstemf", "Package " + (add ? "added" : "removed")
- + " as role holder, role: " + roleName + ", package: " + packageName);
- } else {
- Log.d("settingssssssstemf", "Failed to " + (add ? "add" : "remove")
- + " package as role holder, role: " + roleName + ", package: "
- + packageName);
- }
- };
- roleManager.addRoleHolderAsUser(roleName, packageName, flags, user, executor, callback);
- Log.i("settingssssssstemf", "addRoleHolderAsUser done");
-// }
- }
- }
-
- public static boolean isDefaultHome(Context context) {
- Intent intent = new Intent(Intent.ACTION_MAIN);//Intent.ACTION_VIEW
- intent.addCategory("android.intent.category.HOME");
- intent.addCategory("android.intent.category.DEFAULT");
- PackageManager pm = context.getPackageManager();
- ResolveInfo info = pm.resolveActivity(intent, PackageManager.MATCH_DEFAULT_ONLY);
- boolean isDefault = context.getPackageName().equals(info.activityInfo.packageName);
- return isDefault;
- }
-}
diff --git a/app/src/main/java/com/uiui/zyos/utils/SchemeUtils.java b/app/src/main/java/com/uiui/zyos/utils/SchemeUtils.java
deleted file mode 100644
index 9332965..0000000
--- a/app/src/main/java/com/uiui/zyos/utils/SchemeUtils.java
+++ /dev/null
@@ -1,30 +0,0 @@
-package com.uiui.zyos.utils;
-
-import android.app.Activity;
-import android.content.Intent;
-import android.net.Uri;
-import android.text.TextUtils;
-import android.util.Log;
-
-public class SchemeUtils {
- private static String TAG = SchemeUtils.class.getSimpleName();
-
- public static final String SCHEME_TONGUE = "uiuihealth://tongue";
- public static final String SCHEME_FACE = "uiuihealth://face";
- public static final String SCHEME_HAND = "uiuihealth://hand";
-
- public static void openScheme(Activity context, String uri) {
- if (TextUtils.isEmpty(uri)) {
- return;
- }
- Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
- try {
- context.startActivity(intent);
- } catch (Exception e) {
- Log.e(TAG, "openScheme: " + e.getMessage());
- }
- }
-
-
-
-}
diff --git a/app/src/main/java/com/uiui/zyos/utils/WakeUpUtils.java b/app/src/main/java/com/uiui/zyos/utils/WakeUpUtils.java
deleted file mode 100644
index 3d349b4..0000000
--- a/app/src/main/java/com/uiui/zyos/utils/WakeUpUtils.java
+++ /dev/null
@@ -1,119 +0,0 @@
-package com.uiui.zyos.utils;
-
-import android.annotation.SuppressLint;
-import android.app.Activity;
-import android.app.KeyguardManager;
-import android.content.Context;
-import android.os.Build;
-import android.os.PowerManager;
-import android.util.Log;
-import android.view.Window;
-import android.view.WindowManager;
-
-import androidx.annotation.RequiresApi;
-
-public class WakeUpUtils {
-
- /**
- * 唤醒手机屏幕并解锁
- */
- public static void wakeUpAndUnlock(Activity activity) {
- // 获取电源管理器对象
- PowerManager pm = (PowerManager) activity.getApplicationContext()
- .getSystemService(Context.POWER_SERVICE);
- boolean screenOn = pm.isScreenOn();
- Log.d("WakeScreen0", "screenOn: " + screenOn);
- if (!screenOn) {
- // 获取PowerManager.WakeLock对象,后面的参数|表示同时传入两个值,最后的是LogCat里用的Tag
- @SuppressLint("InvalidWakeLockTag") PowerManager.WakeLock wl = pm.newWakeLock(
- PowerManager.ACQUIRE_CAUSES_WAKEUP |
- PowerManager.SCREEN_BRIGHT_WAKE_LOCK, "bright");
- wl.acquire(10000); // 点亮屏幕
- wl.release(); // 释放
- }
- // 屏幕解锁
- KeyguardManager keyguardManager = (KeyguardManager) activity.getApplicationContext()
- .getSystemService(Context.KEYGUARD_SERVICE);
- KeyguardManager.KeyguardLock keyguardLock = keyguardManager.newKeyguardLock("unLock");
- // 屏幕锁定
-// keyguardLock.reenableKeyguard();
- keyguardLock.disableKeyguard(); // 解锁
- unLockScreen(activity);
- }
-
- private static void unLockScreen(Activity activity) {
- final Window win = activity.getWindow();
- win.addFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED
- | WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD);
-
- win.addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON
- | WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON
- | WindowManager.LayoutParams.FLAG_ALLOW_LOCK_WHILE_SCREEN_ON);
- }
-
- /**
- * 唤醒手机屏幕并解锁
- */
- @RequiresApi(api = Build.VERSION_CODES.O)
- public static void wakeUpAndUnlockScreen(Activity activity) {
-
- Window win = activity.getWindow();
- win.addFlags(WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD
- | WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED
- | WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON);
-
- PowerManager pm = (PowerManager) activity.getSystemService(Context.POWER_SERVICE);
- @SuppressLint("InvalidWakeLockTag")
- PowerManager.WakeLock wakelock = pm.newWakeLock(
- PowerManager.FULL_WAKE_LOCK
- | PowerManager.ACQUIRE_CAUSES_WAKEUP, "xx");
- wakelock.acquire();
- wakelock.release();
-
- KeyguardManager keyguardManager = (KeyguardManager) activity.getApplicationContext()
- .getSystemService(Context.KEYGUARD_SERVICE);
-
- if (activity == null) return;
- keyguardManager.requestDismissKeyguard(activity, new KeyguardManager.KeyguardDismissCallback() {
- @Override
- public void onDismissError() {
- super.onDismissError();
- Log.d("xxx-->", "1 onDismissError");
- }
-
- @Override
- public void onDismissSucceeded() {
- super.onDismissSucceeded();
- Log.d("xxx-->", "1 onDismissSucceeded");
- }
-
- @Override
- public void onDismissCancelled() {
- super.onDismissCancelled();
- Log.d("xxx-->", "1 onDismissCancelled");
- }
- });
-
- if (activity == null) return;
- keyguardManager.requestDismissKeyguard(activity, new KeyguardManager.KeyguardDismissCallback() {
- @Override
- public void onDismissError() {
- super.onDismissError();
- Log.d("xxx-->", "2 onDismissError");
- }
-
- @Override
- public void onDismissSucceeded() {
- super.onDismissSucceeded();
- Log.d("xxx-->", "2 onDismissSucceeded");
- }
-
- @Override
- public void onDismissCancelled() {
- super.onDismissCancelled();
- Log.d("xxx-->", "2 onDismissCancelled");
- }
- });
-
- }
-}
diff --git a/app/src/main/res/drawable-hdpi/actions_about.png b/app/src/main/res/drawable-hdpi/actions_about.png
deleted file mode 100644
index bf8fb68..0000000
Binary files a/app/src/main/res/drawable-hdpi/actions_about.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/actions_account.png b/app/src/main/res/drawable-hdpi/actions_account.png
deleted file mode 100644
index 83f3f49..0000000
Binary files a/app/src/main/res/drawable-hdpi/actions_account.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/actions_booktag.png b/app/src/main/res/drawable-hdpi/actions_booktag.png
deleted file mode 100644
index 538c60d..0000000
Binary files a/app/src/main/res/drawable-hdpi/actions_booktag.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/actions_cent.png b/app/src/main/res/drawable-hdpi/actions_cent.png
deleted file mode 100644
index 02b6df9..0000000
Binary files a/app/src/main/res/drawable-hdpi/actions_cent.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/actions_comment.png b/app/src/main/res/drawable-hdpi/actions_comment.png
deleted file mode 100644
index 22246f2..0000000
Binary files a/app/src/main/res/drawable-hdpi/actions_comment.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/actions_feedback.png b/app/src/main/res/drawable-hdpi/actions_feedback.png
deleted file mode 100644
index f47cfa1..0000000
Binary files a/app/src/main/res/drawable-hdpi/actions_feedback.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/actions_order.png b/app/src/main/res/drawable-hdpi/actions_order.png
deleted file mode 100644
index 065ec3d..0000000
Binary files a/app/src/main/res/drawable-hdpi/actions_order.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/actions_weibo.png b/app/src/main/res/drawable-hdpi/actions_weibo.png
deleted file mode 100644
index 402d9b7..0000000
Binary files a/app/src/main/res/drawable-hdpi/actions_weibo.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/back.png b/app/src/main/res/drawable-hdpi/back.png
deleted file mode 100644
index e57a14b..0000000
Binary files a/app/src/main/res/drawable-hdpi/back.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/back_black.png b/app/src/main/res/drawable-hdpi/back_black.png
deleted file mode 100644
index 02c754e..0000000
Binary files a/app/src/main/res/drawable-hdpi/back_black.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/back_white.png b/app/src/main/res/drawable-hdpi/back_white.png
deleted file mode 100644
index 28e130e..0000000
Binary files a/app/src/main/res/drawable-hdpi/back_white.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/battery1.png b/app/src/main/res/drawable-hdpi/battery1.png
deleted file mode 100644
index 8959a34..0000000
Binary files a/app/src/main/res/drawable-hdpi/battery1.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/bluetooth1.png b/app/src/main/res/drawable-hdpi/bluetooth1.png
deleted file mode 100644
index 8212fdd..0000000
Binary files a/app/src/main/res/drawable-hdpi/bluetooth1.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/brightness1.png b/app/src/main/res/drawable-hdpi/brightness1.png
deleted file mode 100644
index 6997b5f..0000000
Binary files a/app/src/main/res/drawable-hdpi/brightness1.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/charging_icon.png b/app/src/main/res/drawable-hdpi/charging_icon.png
deleted file mode 100644
index 18533e7..0000000
Binary files a/app/src/main/res/drawable-hdpi/charging_icon.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/close.png b/app/src/main/res/drawable-hdpi/close.png
deleted file mode 100644
index 37f2f88..0000000
Binary files a/app/src/main/res/drawable-hdpi/close.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/com_android_appstore.png b/app/src/main/res/drawable-hdpi/com_android_appstore.png
deleted file mode 100644
index 9b06c7c..0000000
Binary files a/app/src/main/res/drawable-hdpi/com_android_appstore.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/com_android_browser.png b/app/src/main/res/drawable-hdpi/com_android_browser.png
deleted file mode 100644
index c569613..0000000
Binary files a/app/src/main/res/drawable-hdpi/com_android_browser.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/com_android_calculator2.png b/app/src/main/res/drawable-hdpi/com_android_calculator2.png
deleted file mode 100644
index 31402e7..0000000
Binary files a/app/src/main/res/drawable-hdpi/com_android_calculator2.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/com_android_calendar.png b/app/src/main/res/drawable-hdpi/com_android_calendar.png
deleted file mode 100644
index 0065e28..0000000
Binary files a/app/src/main/res/drawable-hdpi/com_android_calendar.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/com_android_camera.png b/app/src/main/res/drawable-hdpi/com_android_camera.png
deleted file mode 100644
index bbeb62c..0000000
Binary files a/app/src/main/res/drawable-hdpi/com_android_camera.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/com_android_clean.png b/app/src/main/res/drawable-hdpi/com_android_clean.png
deleted file mode 100644
index be7eae1..0000000
Binary files a/app/src/main/res/drawable-hdpi/com_android_clean.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/com_android_contacts.png b/app/src/main/res/drawable-hdpi/com_android_contacts.png
deleted file mode 100644
index b204ea0..0000000
Binary files a/app/src/main/res/drawable-hdpi/com_android_contacts.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/com_android_deskclock.png b/app/src/main/res/drawable-hdpi/com_android_deskclock.png
deleted file mode 100644
index 81bf96f..0000000
Binary files a/app/src/main/res/drawable-hdpi/com_android_deskclock.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/com_android_dialer.png b/app/src/main/res/drawable-hdpi/com_android_dialer.png
deleted file mode 100644
index 5bf5306..0000000
Binary files a/app/src/main/res/drawable-hdpi/com_android_dialer.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/com_android_email.png b/app/src/main/res/drawable-hdpi/com_android_email.png
deleted file mode 100644
index 2eb7a70..0000000
Binary files a/app/src/main/res/drawable-hdpi/com_android_email.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/com_android_gallery3d_app.png b/app/src/main/res/drawable-hdpi/com_android_gallery3d_app.png
deleted file mode 100644
index a5177c3..0000000
Binary files a/app/src/main/res/drawable-hdpi/com_android_gallery3d_app.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/com_android_mms_ui.png b/app/src/main/res/drawable-hdpi/com_android_mms_ui.png
deleted file mode 100644
index 1ac19f2..0000000
Binary files a/app/src/main/res/drawable-hdpi/com_android_mms_ui.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/com_android_music.png b/app/src/main/res/drawable-hdpi/com_android_music.png
deleted file mode 100644
index d0b55a9..0000000
Binary files a/app/src/main/res/drawable-hdpi/com_android_music.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/com_android_providers_downloads_ui.png b/app/src/main/res/drawable-hdpi/com_android_providers_downloads_ui.png
deleted file mode 100644
index 55cd1e9..0000000
Binary files a/app/src/main/res/drawable-hdpi/com_android_providers_downloads_ui.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/com_android_quicksearchbox.png b/app/src/main/res/drawable-hdpi/com_android_quicksearchbox.png
deleted file mode 100644
index fd8b051..0000000
Binary files a/app/src/main/res/drawable-hdpi/com_android_quicksearchbox.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/com_android_settings.png b/app/src/main/res/drawable-hdpi/com_android_settings.png
deleted file mode 100644
index ad4e3a7..0000000
Binary files a/app/src/main/res/drawable-hdpi/com_android_settings.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/com_android_soundrecorder.png b/app/src/main/res/drawable-hdpi/com_android_soundrecorder.png
deleted file mode 100644
index 538075f..0000000
Binary files a/app/src/main/res/drawable-hdpi/com_android_soundrecorder.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/com_android_stk_stkmain.png b/app/src/main/res/drawable-hdpi/com_android_stk_stkmain.png
deleted file mode 100644
index 1af7e9e..0000000
Binary files a/app/src/main/res/drawable-hdpi/com_android_stk_stkmain.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/com_android_vdieo.png b/app/src/main/res/drawable-hdpi/com_android_vdieo.png
deleted file mode 100644
index a031a22..0000000
Binary files a/app/src/main/res/drawable-hdpi/com_android_vdieo.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/com_mediatek_filemanager.png b/app/src/main/res/drawable-hdpi/com_mediatek_filemanager.png
deleted file mode 100644
index 2c5128a..0000000
Binary files a/app/src/main/res/drawable-hdpi/com_mediatek_filemanager.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/com_mediatek_fmradio.png b/app/src/main/res/drawable-hdpi/com_mediatek_fmradio.png
deleted file mode 100644
index f62afdf..0000000
Binary files a/app/src/main/res/drawable-hdpi/com_mediatek_fmradio.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/com_uiui_sn.png b/app/src/main/res/drawable-hdpi/com_uiui_sn.png
deleted file mode 100644
index d4d1d10..0000000
Binary files a/app/src/main/res/drawable-hdpi/com_uiui_sn.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/control_background.png b/app/src/main/res/drawable-hdpi/control_background.png
deleted file mode 100644
index 0fce687..0000000
Binary files a/app/src/main/res/drawable-hdpi/control_background.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/default_head.png b/app/src/main/res/drawable-hdpi/default_head.png
deleted file mode 100644
index 4dc3c83..0000000
Binary files a/app/src/main/res/drawable-hdpi/default_head.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/delete.png b/app/src/main/res/drawable-hdpi/delete.png
deleted file mode 100644
index 521bf24..0000000
Binary files a/app/src/main/res/drawable-hdpi/delete.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/flashlight1.png b/app/src/main/res/drawable-hdpi/flashlight1.png
deleted file mode 100644
index c419b65..0000000
Binary files a/app/src/main/res/drawable-hdpi/flashlight1.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/font_size.png b/app/src/main/res/drawable-hdpi/font_size.png
deleted file mode 100644
index 84e2d3f..0000000
Binary files a/app/src/main/res/drawable-hdpi/font_size.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/gallery_icon.png b/app/src/main/res/drawable-hdpi/gallery_icon.png
deleted file mode 100644
index f509ece..0000000
Binary files a/app/src/main/res/drawable-hdpi/gallery_icon.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he100.png b/app/src/main/res/drawable-hdpi/he100.png
deleted file mode 100644
index 6669841..0000000
Binary files a/app/src/main/res/drawable-hdpi/he100.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he101.png b/app/src/main/res/drawable-hdpi/he101.png
deleted file mode 100644
index 2f74dcf..0000000
Binary files a/app/src/main/res/drawable-hdpi/he101.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he102.png b/app/src/main/res/drawable-hdpi/he102.png
deleted file mode 100644
index 784b078..0000000
Binary files a/app/src/main/res/drawable-hdpi/he102.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he103.png b/app/src/main/res/drawable-hdpi/he103.png
deleted file mode 100644
index 8767acb..0000000
Binary files a/app/src/main/res/drawable-hdpi/he103.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he104.png b/app/src/main/res/drawable-hdpi/he104.png
deleted file mode 100644
index 6420624..0000000
Binary files a/app/src/main/res/drawable-hdpi/he104.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he150.png b/app/src/main/res/drawable-hdpi/he150.png
deleted file mode 100644
index df55ec5..0000000
Binary files a/app/src/main/res/drawable-hdpi/he150.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he153.png b/app/src/main/res/drawable-hdpi/he153.png
deleted file mode 100644
index f018af0..0000000
Binary files a/app/src/main/res/drawable-hdpi/he153.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he154.png b/app/src/main/res/drawable-hdpi/he154.png
deleted file mode 100644
index 22f42c0..0000000
Binary files a/app/src/main/res/drawable-hdpi/he154.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he300.png b/app/src/main/res/drawable-hdpi/he300.png
deleted file mode 100644
index 1de84ba..0000000
Binary files a/app/src/main/res/drawable-hdpi/he300.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he301.png b/app/src/main/res/drawable-hdpi/he301.png
deleted file mode 100644
index 0fc3b9d..0000000
Binary files a/app/src/main/res/drawable-hdpi/he301.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he302.png b/app/src/main/res/drawable-hdpi/he302.png
deleted file mode 100644
index 61c4406..0000000
Binary files a/app/src/main/res/drawable-hdpi/he302.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he303.png b/app/src/main/res/drawable-hdpi/he303.png
deleted file mode 100644
index 6a8b3c4..0000000
Binary files a/app/src/main/res/drawable-hdpi/he303.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he304.png b/app/src/main/res/drawable-hdpi/he304.png
deleted file mode 100644
index 19a2556..0000000
Binary files a/app/src/main/res/drawable-hdpi/he304.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he305.png b/app/src/main/res/drawable-hdpi/he305.png
deleted file mode 100644
index 1105af0..0000000
Binary files a/app/src/main/res/drawable-hdpi/he305.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he306.png b/app/src/main/res/drawable-hdpi/he306.png
deleted file mode 100644
index b307070..0000000
Binary files a/app/src/main/res/drawable-hdpi/he306.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he307.png b/app/src/main/res/drawable-hdpi/he307.png
deleted file mode 100644
index 810a23a..0000000
Binary files a/app/src/main/res/drawable-hdpi/he307.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he308.png b/app/src/main/res/drawable-hdpi/he308.png
deleted file mode 100644
index 9600919..0000000
Binary files a/app/src/main/res/drawable-hdpi/he308.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he309.png b/app/src/main/res/drawable-hdpi/he309.png
deleted file mode 100644
index 9c805d8..0000000
Binary files a/app/src/main/res/drawable-hdpi/he309.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he310.png b/app/src/main/res/drawable-hdpi/he310.png
deleted file mode 100644
index 9608b6e..0000000
Binary files a/app/src/main/res/drawable-hdpi/he310.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he311.png b/app/src/main/res/drawable-hdpi/he311.png
deleted file mode 100644
index 59c74ed..0000000
Binary files a/app/src/main/res/drawable-hdpi/he311.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he312.png b/app/src/main/res/drawable-hdpi/he312.png
deleted file mode 100644
index 1daa1da..0000000
Binary files a/app/src/main/res/drawable-hdpi/he312.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he313.png b/app/src/main/res/drawable-hdpi/he313.png
deleted file mode 100644
index 11ca685..0000000
Binary files a/app/src/main/res/drawable-hdpi/he313.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he314.png b/app/src/main/res/drawable-hdpi/he314.png
deleted file mode 100644
index 3b6ac91..0000000
Binary files a/app/src/main/res/drawable-hdpi/he314.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he315.png b/app/src/main/res/drawable-hdpi/he315.png
deleted file mode 100644
index 8f06fae..0000000
Binary files a/app/src/main/res/drawable-hdpi/he315.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he316.png b/app/src/main/res/drawable-hdpi/he316.png
deleted file mode 100644
index b3395ac..0000000
Binary files a/app/src/main/res/drawable-hdpi/he316.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he317.png b/app/src/main/res/drawable-hdpi/he317.png
deleted file mode 100644
index 8441d41..0000000
Binary files a/app/src/main/res/drawable-hdpi/he317.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he318.png b/app/src/main/res/drawable-hdpi/he318.png
deleted file mode 100644
index af60e09..0000000
Binary files a/app/src/main/res/drawable-hdpi/he318.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he350.png b/app/src/main/res/drawable-hdpi/he350.png
deleted file mode 100644
index 3976006..0000000
Binary files a/app/src/main/res/drawable-hdpi/he350.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he351.png b/app/src/main/res/drawable-hdpi/he351.png
deleted file mode 100644
index b436ea4..0000000
Binary files a/app/src/main/res/drawable-hdpi/he351.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he399.png b/app/src/main/res/drawable-hdpi/he399.png
deleted file mode 100644
index 44a094c..0000000
Binary files a/app/src/main/res/drawable-hdpi/he399.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he400.png b/app/src/main/res/drawable-hdpi/he400.png
deleted file mode 100644
index e512d55..0000000
Binary files a/app/src/main/res/drawable-hdpi/he400.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he401.png b/app/src/main/res/drawable-hdpi/he401.png
deleted file mode 100644
index 4765e28..0000000
Binary files a/app/src/main/res/drawable-hdpi/he401.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he402.png b/app/src/main/res/drawable-hdpi/he402.png
deleted file mode 100644
index 4fab297..0000000
Binary files a/app/src/main/res/drawable-hdpi/he402.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he403.png b/app/src/main/res/drawable-hdpi/he403.png
deleted file mode 100644
index 77f12a6..0000000
Binary files a/app/src/main/res/drawable-hdpi/he403.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he404.png b/app/src/main/res/drawable-hdpi/he404.png
deleted file mode 100644
index a70a3d0..0000000
Binary files a/app/src/main/res/drawable-hdpi/he404.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he405.png b/app/src/main/res/drawable-hdpi/he405.png
deleted file mode 100644
index 697c726..0000000
Binary files a/app/src/main/res/drawable-hdpi/he405.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he406.png b/app/src/main/res/drawable-hdpi/he406.png
deleted file mode 100644
index 38657ca..0000000
Binary files a/app/src/main/res/drawable-hdpi/he406.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he407.png b/app/src/main/res/drawable-hdpi/he407.png
deleted file mode 100644
index 12647d2..0000000
Binary files a/app/src/main/res/drawable-hdpi/he407.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he408.png b/app/src/main/res/drawable-hdpi/he408.png
deleted file mode 100644
index 5e11377..0000000
Binary files a/app/src/main/res/drawable-hdpi/he408.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he409.png b/app/src/main/res/drawable-hdpi/he409.png
deleted file mode 100644
index 5794537..0000000
Binary files a/app/src/main/res/drawable-hdpi/he409.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he410.png b/app/src/main/res/drawable-hdpi/he410.png
deleted file mode 100644
index b2077a1..0000000
Binary files a/app/src/main/res/drawable-hdpi/he410.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he456.png b/app/src/main/res/drawable-hdpi/he456.png
deleted file mode 100644
index 1664034..0000000
Binary files a/app/src/main/res/drawable-hdpi/he456.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he457.png b/app/src/main/res/drawable-hdpi/he457.png
deleted file mode 100644
index 1f56270..0000000
Binary files a/app/src/main/res/drawable-hdpi/he457.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he499.png b/app/src/main/res/drawable-hdpi/he499.png
deleted file mode 100644
index bc2fbd4..0000000
Binary files a/app/src/main/res/drawable-hdpi/he499.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he500.png b/app/src/main/res/drawable-hdpi/he500.png
deleted file mode 100644
index d2ec7d6..0000000
Binary files a/app/src/main/res/drawable-hdpi/he500.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he501.png b/app/src/main/res/drawable-hdpi/he501.png
deleted file mode 100644
index ef3bc16..0000000
Binary files a/app/src/main/res/drawable-hdpi/he501.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he502.png b/app/src/main/res/drawable-hdpi/he502.png
deleted file mode 100644
index e7816da..0000000
Binary files a/app/src/main/res/drawable-hdpi/he502.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he503.png b/app/src/main/res/drawable-hdpi/he503.png
deleted file mode 100644
index 0e5b5d1..0000000
Binary files a/app/src/main/res/drawable-hdpi/he503.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he504.png b/app/src/main/res/drawable-hdpi/he504.png
deleted file mode 100644
index 185b37d..0000000
Binary files a/app/src/main/res/drawable-hdpi/he504.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he507.png b/app/src/main/res/drawable-hdpi/he507.png
deleted file mode 100644
index 4a6403d..0000000
Binary files a/app/src/main/res/drawable-hdpi/he507.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he508.png b/app/src/main/res/drawable-hdpi/he508.png
deleted file mode 100644
index a3a333f..0000000
Binary files a/app/src/main/res/drawable-hdpi/he508.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he509.png b/app/src/main/res/drawable-hdpi/he509.png
deleted file mode 100644
index 5900d5c..0000000
Binary files a/app/src/main/res/drawable-hdpi/he509.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he510.png b/app/src/main/res/drawable-hdpi/he510.png
deleted file mode 100644
index fdf6422..0000000
Binary files a/app/src/main/res/drawable-hdpi/he510.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he511.png b/app/src/main/res/drawable-hdpi/he511.png
deleted file mode 100644
index 40cfd0e..0000000
Binary files a/app/src/main/res/drawable-hdpi/he511.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he512.png b/app/src/main/res/drawable-hdpi/he512.png
deleted file mode 100644
index 22ab63a..0000000
Binary files a/app/src/main/res/drawable-hdpi/he512.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he513.png b/app/src/main/res/drawable-hdpi/he513.png
deleted file mode 100644
index 6e8c4e3..0000000
Binary files a/app/src/main/res/drawable-hdpi/he513.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he514.png b/app/src/main/res/drawable-hdpi/he514.png
deleted file mode 100644
index 5892ad0..0000000
Binary files a/app/src/main/res/drawable-hdpi/he514.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he515.png b/app/src/main/res/drawable-hdpi/he515.png
deleted file mode 100644
index 518137a..0000000
Binary files a/app/src/main/res/drawable-hdpi/he515.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he900.png b/app/src/main/res/drawable-hdpi/he900.png
deleted file mode 100644
index 020b8e3..0000000
Binary files a/app/src/main/res/drawable-hdpi/he900.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he901.png b/app/src/main/res/drawable-hdpi/he901.png
deleted file mode 100644
index df59561..0000000
Binary files a/app/src/main/res/drawable-hdpi/he901.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/he999.png b/app/src/main/res/drawable-hdpi/he999.png
deleted file mode 100644
index bb0c9f9..0000000
Binary files a/app/src/main/res/drawable-hdpi/he999.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/home_activation_icon.png b/app/src/main/res/drawable-hdpi/home_activation_icon.png
deleted file mode 100644
index 62b6183..0000000
Binary files a/app/src/main/res/drawable-hdpi/home_activation_icon.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/home_appstore_icon.png b/app/src/main/res/drawable-hdpi/home_appstore_icon.png
deleted file mode 100644
index 69cc9c8..0000000
Binary files a/app/src/main/res/drawable-hdpi/home_appstore_icon.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/home_clean_icon.png b/app/src/main/res/drawable-hdpi/home_clean_icon.png
deleted file mode 100644
index 8d6e541..0000000
Binary files a/app/src/main/res/drawable-hdpi/home_clean_icon.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/home_clinical_detection.png b/app/src/main/res/drawable-hdpi/home_clinical_detection.png
deleted file mode 100644
index 3e60ede..0000000
Binary files a/app/src/main/res/drawable-hdpi/home_clinical_detection.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/home_clinical_face.png b/app/src/main/res/drawable-hdpi/home_clinical_face.png
deleted file mode 100644
index b11093c..0000000
Binary files a/app/src/main/res/drawable-hdpi/home_clinical_face.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/home_clinical_hand.png b/app/src/main/res/drawable-hdpi/home_clinical_hand.png
deleted file mode 100644
index 892581b..0000000
Binary files a/app/src/main/res/drawable-hdpi/home_clinical_hand.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/home_clinical_tongue.png b/app/src/main/res/drawable-hdpi/home_clinical_tongue.png
deleted file mode 100644
index aa0c298..0000000
Binary files a/app/src/main/res/drawable-hdpi/home_clinical_tongue.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/home_contact_icon.png b/app/src/main/res/drawable-hdpi/home_contact_icon.png
deleted file mode 100644
index 784bc19..0000000
Binary files a/app/src/main/res/drawable-hdpi/home_contact_icon.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/home_health_code.png b/app/src/main/res/drawable-hdpi/home_health_code.png
deleted file mode 100644
index 4f47639..0000000
Binary files a/app/src/main/res/drawable-hdpi/home_health_code.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/home_quick_app.png b/app/src/main/res/drawable-hdpi/home_quick_app.png
deleted file mode 100644
index c8e5439..0000000
Binary files a/app/src/main/res/drawable-hdpi/home_quick_app.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/home_reminder_icon.png b/app/src/main/res/drawable-hdpi/home_reminder_icon.png
deleted file mode 100644
index d7ef6f0..0000000
Binary files a/app/src/main/res/drawable-hdpi/home_reminder_icon.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/home_sos_icon.png b/app/src/main/res/drawable-hdpi/home_sos_icon.png
deleted file mode 100644
index 4d0f991..0000000
Binary files a/app/src/main/res/drawable-hdpi/home_sos_icon.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/ic_uninstall.png b/app/src/main/res/drawable-hdpi/ic_uninstall.png
deleted file mode 100644
index e2d34df..0000000
Binary files a/app/src/main/res/drawable-hdpi/ic_uninstall.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/icon_dialer.png b/app/src/main/res/drawable-hdpi/icon_dialer.png
deleted file mode 100644
index c657b8a..0000000
Binary files a/app/src/main/res/drawable-hdpi/icon_dialer.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/icon_location.png b/app/src/main/res/drawable-hdpi/icon_location.png
deleted file mode 100644
index c2ec430..0000000
Binary files a/app/src/main/res/drawable-hdpi/icon_location.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/icon_selected.png b/app/src/main/res/drawable-hdpi/icon_selected.png
deleted file mode 100644
index d9560f2..0000000
Binary files a/app/src/main/res/drawable-hdpi/icon_selected.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/icon_unselected.png b/app/src/main/res/drawable-hdpi/icon_unselected.png
deleted file mode 100644
index d21c906..0000000
Binary files a/app/src/main/res/drawable-hdpi/icon_unselected.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/location.png b/app/src/main/res/drawable-hdpi/location.png
deleted file mode 100644
index 293f0c9..0000000
Binary files a/app/src/main/res/drawable-hdpi/location.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/more.png b/app/src/main/res/drawable-hdpi/more.png
deleted file mode 100644
index b5fb61b..0000000
Binary files a/app/src/main/res/drawable-hdpi/more.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/nodata.png b/app/src/main/res/drawable-hdpi/nodata.png
deleted file mode 100644
index a665cc3..0000000
Binary files a/app/src/main/res/drawable-hdpi/nodata.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/note_nodata.png b/app/src/main/res/drawable-hdpi/note_nodata.png
deleted file mode 100644
index f9a5ea1..0000000
Binary files a/app/src/main/res/drawable-hdpi/note_nodata.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/position.png b/app/src/main/res/drawable-hdpi/position.png
deleted file mode 100644
index 7a9e54e..0000000
Binary files a/app/src/main/res/drawable-hdpi/position.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/scan_qrcode.png b/app/src/main/res/drawable-hdpi/scan_qrcode.png
deleted file mode 100644
index 1ee8ab0..0000000
Binary files a/app/src/main/res/drawable-hdpi/scan_qrcode.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/shafa.png b/app/src/main/res/drawable-hdpi/shafa.png
deleted file mode 100644
index 81f4eb0..0000000
Binary files a/app/src/main/res/drawable-hdpi/shafa.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/sound1.png b/app/src/main/res/drawable-hdpi/sound1.png
deleted file mode 100644
index 0d95b28..0000000
Binary files a/app/src/main/res/drawable-hdpi/sound1.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/systemapp_icon.png b/app/src/main/res/drawable-hdpi/systemapp_icon.png
deleted file mode 100644
index 4e403d5..0000000
Binary files a/app/src/main/res/drawable-hdpi/systemapp_icon.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/time1.png b/app/src/main/res/drawable-hdpi/time1.png
deleted file mode 100644
index 3b9ffc0..0000000
Binary files a/app/src/main/res/drawable-hdpi/time1.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/voice.png b/app/src/main/res/drawable-hdpi/voice.png
deleted file mode 100644
index 7ee7cbf..0000000
Binary files a/app/src/main/res/drawable-hdpi/voice.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/wallpaper.png b/app/src/main/res/drawable-hdpi/wallpaper.png
deleted file mode 100644
index 69167b4..0000000
Binary files a/app/src/main/res/drawable-hdpi/wallpaper.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/wifi1.png b/app/src/main/res/drawable-hdpi/wifi1.png
deleted file mode 100644
index 8fefacb..0000000
Binary files a/app/src/main/res/drawable-hdpi/wifi1.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/wifi_icon.png b/app/src/main/res/drawable-hdpi/wifi_icon.png
deleted file mode 100644
index cc62e04..0000000
Binary files a/app/src/main/res/drawable-hdpi/wifi_icon.png and /dev/null differ
diff --git a/app/src/main/res/drawable-hdpi/zan.png b/app/src/main/res/drawable-hdpi/zan.png
deleted file mode 100644
index e355491..0000000
Binary files a/app/src/main/res/drawable-hdpi/zan.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/biological_fine_volume.png b/app/src/main/res/drawable-xhdpi/biological_fine_volume.png
new file mode 100644
index 0000000..9c2145e
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/biological_fine_volume.png differ
diff --git a/app/src/main/res/drawable-xhdpi/biology_box.png b/app/src/main/res/drawable-xhdpi/biology_box.png
new file mode 100644
index 0000000..23f2bbd
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/biology_box.png differ
diff --git a/app/src/main/res/drawable-xhdpi/biology_laboratory.png b/app/src/main/res/drawable-xhdpi/biology_laboratory.png
new file mode 100644
index 0000000..75c5579
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/biology_laboratory.png differ
diff --git a/app/src/main/res/drawable-xhdpi/biology_synchronous_explanation.png b/app/src/main/res/drawable-xhdpi/biology_synchronous_explanation.png
new file mode 100644
index 0000000..a1d4580
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/biology_synchronous_explanation.png differ
diff --git a/app/src/main/res/drawable-xhdpi/biology_unit_testing.png b/app/src/main/res/drawable-xhdpi/biology_unit_testing.png
new file mode 100644
index 0000000..d17af41
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/biology_unit_testing.png differ
diff --git a/app/src/main/res/drawable-xhdpi/chemical_box.png b/app/src/main/res/drawable-xhdpi/chemical_box.png
new file mode 100644
index 0000000..904a9cb
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/chemical_box.png differ
diff --git a/app/src/main/res/drawable-xhdpi/chemical_fine_volume.png b/app/src/main/res/drawable-xhdpi/chemical_fine_volume.png
new file mode 100644
index 0000000..26ab054
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/chemical_fine_volume.png differ
diff --git a/app/src/main/res/drawable-xhdpi/chemical_lab.png b/app/src/main/res/drawable-xhdpi/chemical_lab.png
new file mode 100644
index 0000000..5d8dddb
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/chemical_lab.png differ
diff --git a/app/src/main/res/drawable-xhdpi/chemical_synchronous_explanation.png b/app/src/main/res/drawable-xhdpi/chemical_synchronous_explanation.png
new file mode 100644
index 0000000..aff7059
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/chemical_synchronous_explanation.png differ
diff --git a/app/src/main/res/drawable-xhdpi/chinese_box.png b/app/src/main/res/drawable-xhdpi/chinese_box.png
new file mode 100644
index 0000000..dc3af37
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/chinese_box.png differ
diff --git a/app/src/main/res/drawable-xhdpi/chinese_composition_correction.png b/app/src/main/res/drawable-xhdpi/chinese_composition_correction.png
new file mode 100644
index 0000000..3069dd4
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/chinese_composition_correction.png differ
diff --git a/app/src/main/res/drawable-xhdpi/chinese_excellent_volume.png b/app/src/main/res/drawable-xhdpi/chinese_excellent_volume.png
new file mode 100644
index 0000000..72246a9
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/chinese_excellent_volume.png differ
diff --git a/app/src/main/res/drawable-xhdpi/chinese_poetry_world.png b/app/src/main/res/drawable-xhdpi/chinese_poetry_world.png
new file mode 100644
index 0000000..400b905
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/chinese_poetry_world.png differ
diff --git a/app/src/main/res/drawable-xhdpi/chinese_synchronous_explanation.png b/app/src/main/res/drawable-xhdpi/chinese_synchronous_explanation.png
new file mode 100644
index 0000000..79b296c
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/chinese_synchronous_explanation.png differ
diff --git a/app/src/main/res/drawable-xhdpi/chinese_unit_test.png b/app/src/main/res/drawable-xhdpi/chinese_unit_test.png
new file mode 100644
index 0000000..c553e01
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/chinese_unit_test.png differ
diff --git a/app/src/main/res/drawable-xhdpi/com_android_appstore2.png b/app/src/main/res/drawable-xhdpi/com_android_appstore2.png
deleted file mode 100644
index 78caed9..0000000
Binary files a/app/src/main/res/drawable-xhdpi/com_android_appstore2.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/com_android_aweme2.png b/app/src/main/res/drawable-xhdpi/com_android_aweme2.png
deleted file mode 100644
index 0b82a44..0000000
Binary files a/app/src/main/res/drawable-xhdpi/com_android_aweme2.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/com_android_browser2.png b/app/src/main/res/drawable-xhdpi/com_android_browser2.png
deleted file mode 100644
index 323d3ef..0000000
Binary files a/app/src/main/res/drawable-xhdpi/com_android_browser2.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/com_android_camera2.png b/app/src/main/res/drawable-xhdpi/com_android_camera2.png
deleted file mode 100644
index 787e8a4..0000000
Binary files a/app/src/main/res/drawable-xhdpi/com_android_camera2.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/com_android_dialer2.png b/app/src/main/res/drawable-xhdpi/com_android_dialer2.png
deleted file mode 100644
index d80b7cd..0000000
Binary files a/app/src/main/res/drawable-xhdpi/com_android_dialer2.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/com_android_gallery3d_app2.png b/app/src/main/res/drawable-xhdpi/com_android_gallery3d_app2.png
deleted file mode 100644
index e56a505..0000000
Binary files a/app/src/main/res/drawable-xhdpi/com_android_gallery3d_app2.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/com_android_mms_ui2.png b/app/src/main/res/drawable-xhdpi/com_android_mms_ui2.png
deleted file mode 100644
index c62fec1..0000000
Binary files a/app/src/main/res/drawable-xhdpi/com_android_mms_ui2.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/com_android_news2.png b/app/src/main/res/drawable-xhdpi/com_android_news2.png
deleted file mode 100644
index bef60f1..0000000
Binary files a/app/src/main/res/drawable-xhdpi/com_android_news2.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/com_android_settings2.png b/app/src/main/res/drawable-xhdpi/com_android_settings2.png
deleted file mode 100644
index 10cb0b8..0000000
Binary files a/app/src/main/res/drawable-xhdpi/com_android_settings2.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/com_tencent_mm2.png b/app/src/main/res/drawable-xhdpi/com_tencent_mm2.png
deleted file mode 100644
index d67b701..0000000
Binary files a/app/src/main/res/drawable-xhdpi/com_tencent_mm2.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/com_uiui_sn2.png b/app/src/main/res/drawable-xhdpi/com_uiui_sn2.png
deleted file mode 100644
index ac506a9..0000000
Binary files a/app/src/main/res/drawable-xhdpi/com_uiui_sn2.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/com_uiui_weather2.png b/app/src/main/res/drawable-xhdpi/com_uiui_weather2.png
deleted file mode 100644
index c64d302..0000000
Binary files a/app/src/main/res/drawable-xhdpi/com_uiui_weather2.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/english_box.png b/app/src/main/res/drawable-xhdpi/english_box.png
new file mode 100644
index 0000000..bacc375
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/english_box.png differ
diff --git a/app/src/main/res/drawable-xhdpi/english_composition_correction.png b/app/src/main/res/drawable-xhdpi/english_composition_correction.png
new file mode 100644
index 0000000..410132b
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/english_composition_correction.png differ
diff --git a/app/src/main/res/drawable-xhdpi/english_explanation.png b/app/src/main/res/drawable-xhdpi/english_explanation.png
new file mode 100644
index 0000000..383dd2f
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/english_explanation.png differ
diff --git a/app/src/main/res/drawable-xhdpi/english_listen_and_speak_special.png b/app/src/main/res/drawable-xhdpi/english_listen_and_speak_special.png
new file mode 100644
index 0000000..4966cfe
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/english_listen_and_speak_special.png differ
diff --git a/app/src/main/res/drawable-xhdpi/english_listen_read.png b/app/src/main/res/drawable-xhdpi/english_listen_read.png
new file mode 100644
index 0000000..0f7370f
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/english_listen_read.png differ
diff --git a/app/src/main/res/drawable-xhdpi/english_remember_words.png b/app/src/main/res/drawable-xhdpi/english_remember_words.png
new file mode 100644
index 0000000..e29e9a5
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/english_remember_words.png differ
diff --git a/app/src/main/res/drawable-xhdpi/english_synchronous_vocabulary.png b/app/src/main/res/drawable-xhdpi/english_synchronous_vocabulary.png
new file mode 100644
index 0000000..788a5bb
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/english_synchronous_vocabulary.png differ
diff --git a/app/src/main/res/drawable-xhdpi/english_unit_practice.png b/app/src/main/res/drawable-xhdpi/english_unit_practice.png
new file mode 100644
index 0000000..780d98d
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/english_unit_practice.png differ
diff --git a/app/src/main/res/drawable-xhdpi/he100.png b/app/src/main/res/drawable-xhdpi/he100.png
deleted file mode 100644
index faf04c8..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he100.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he101.png b/app/src/main/res/drawable-xhdpi/he101.png
deleted file mode 100644
index 17841e4..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he101.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he102.png b/app/src/main/res/drawable-xhdpi/he102.png
deleted file mode 100644
index 51bc5a8..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he102.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he103.png b/app/src/main/res/drawable-xhdpi/he103.png
deleted file mode 100644
index 5fd9957..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he103.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he104.png b/app/src/main/res/drawable-xhdpi/he104.png
deleted file mode 100644
index 9628fbd..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he104.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he150.png b/app/src/main/res/drawable-xhdpi/he150.png
deleted file mode 100644
index eaee769..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he150.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he153.png b/app/src/main/res/drawable-xhdpi/he153.png
deleted file mode 100644
index 346a2c2..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he153.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he154.png b/app/src/main/res/drawable-xhdpi/he154.png
deleted file mode 100644
index 358be1a..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he154.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he300.png b/app/src/main/res/drawable-xhdpi/he300.png
deleted file mode 100644
index 24ba9bc..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he300.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he301.png b/app/src/main/res/drawable-xhdpi/he301.png
deleted file mode 100644
index ad65de8..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he301.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he302.png b/app/src/main/res/drawable-xhdpi/he302.png
deleted file mode 100644
index 4a018ee..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he302.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he303.png b/app/src/main/res/drawable-xhdpi/he303.png
deleted file mode 100644
index aa8d273..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he303.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he304.png b/app/src/main/res/drawable-xhdpi/he304.png
deleted file mode 100644
index 3155a49..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he304.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he305.png b/app/src/main/res/drawable-xhdpi/he305.png
deleted file mode 100644
index f76f6e3..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he305.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he306.png b/app/src/main/res/drawable-xhdpi/he306.png
deleted file mode 100644
index ffb6804..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he306.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he307.png b/app/src/main/res/drawable-xhdpi/he307.png
deleted file mode 100644
index 1e33073..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he307.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he308.png b/app/src/main/res/drawable-xhdpi/he308.png
deleted file mode 100644
index 2586187..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he308.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he309.png b/app/src/main/res/drawable-xhdpi/he309.png
deleted file mode 100644
index 9beebe3..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he309.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he310.png b/app/src/main/res/drawable-xhdpi/he310.png
deleted file mode 100644
index 624b04e..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he310.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he311.png b/app/src/main/res/drawable-xhdpi/he311.png
deleted file mode 100644
index 5fcc3fc..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he311.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he312.png b/app/src/main/res/drawable-xhdpi/he312.png
deleted file mode 100644
index 0e93ff7..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he312.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he313.png b/app/src/main/res/drawable-xhdpi/he313.png
deleted file mode 100644
index ba783d6..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he313.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he314.png b/app/src/main/res/drawable-xhdpi/he314.png
deleted file mode 100644
index 9e93846..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he314.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he315.png b/app/src/main/res/drawable-xhdpi/he315.png
deleted file mode 100644
index 527e6fe..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he315.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he316.png b/app/src/main/res/drawable-xhdpi/he316.png
deleted file mode 100644
index 8309afb..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he316.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he317.png b/app/src/main/res/drawable-xhdpi/he317.png
deleted file mode 100644
index 2e9a702..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he317.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he318.png b/app/src/main/res/drawable-xhdpi/he318.png
deleted file mode 100644
index b99b851..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he318.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he350.png b/app/src/main/res/drawable-xhdpi/he350.png
deleted file mode 100644
index a9a0c52..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he350.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he351.png b/app/src/main/res/drawable-xhdpi/he351.png
deleted file mode 100644
index f7bdda3..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he351.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he399.png b/app/src/main/res/drawable-xhdpi/he399.png
deleted file mode 100644
index 321233b..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he399.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he400.png b/app/src/main/res/drawable-xhdpi/he400.png
deleted file mode 100644
index 532879b..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he400.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he401.png b/app/src/main/res/drawable-xhdpi/he401.png
deleted file mode 100644
index 4a92fc7..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he401.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he402.png b/app/src/main/res/drawable-xhdpi/he402.png
deleted file mode 100644
index ccc2dab..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he402.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he403.png b/app/src/main/res/drawable-xhdpi/he403.png
deleted file mode 100644
index da32ebe..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he403.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he404.png b/app/src/main/res/drawable-xhdpi/he404.png
deleted file mode 100644
index 99a3d9d..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he404.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he405.png b/app/src/main/res/drawable-xhdpi/he405.png
deleted file mode 100644
index c3ac8d4..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he405.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he406.png b/app/src/main/res/drawable-xhdpi/he406.png
deleted file mode 100644
index 01348b1..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he406.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he407.png b/app/src/main/res/drawable-xhdpi/he407.png
deleted file mode 100644
index 37cdd78..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he407.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he408.png b/app/src/main/res/drawable-xhdpi/he408.png
deleted file mode 100644
index f8d216c..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he408.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he409.png b/app/src/main/res/drawable-xhdpi/he409.png
deleted file mode 100644
index e7e729b..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he409.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he410.png b/app/src/main/res/drawable-xhdpi/he410.png
deleted file mode 100644
index 3e4dcf2..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he410.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he456.png b/app/src/main/res/drawable-xhdpi/he456.png
deleted file mode 100644
index 1b080c7..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he456.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he457.png b/app/src/main/res/drawable-xhdpi/he457.png
deleted file mode 100644
index 1b610d2..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he457.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he499.png b/app/src/main/res/drawable-xhdpi/he499.png
deleted file mode 100644
index c486a59..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he499.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he500.png b/app/src/main/res/drawable-xhdpi/he500.png
deleted file mode 100644
index dcecc31..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he500.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he501.png b/app/src/main/res/drawable-xhdpi/he501.png
deleted file mode 100644
index 41fba52..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he501.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he502.png b/app/src/main/res/drawable-xhdpi/he502.png
deleted file mode 100644
index 6ffda43..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he502.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he503.png b/app/src/main/res/drawable-xhdpi/he503.png
deleted file mode 100644
index f7e2296..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he503.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he504.png b/app/src/main/res/drawable-xhdpi/he504.png
deleted file mode 100644
index b26ea7b..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he504.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he507.png b/app/src/main/res/drawable-xhdpi/he507.png
deleted file mode 100644
index 43b1e6e..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he507.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he508.png b/app/src/main/res/drawable-xhdpi/he508.png
deleted file mode 100644
index f932cd9..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he508.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he509.png b/app/src/main/res/drawable-xhdpi/he509.png
deleted file mode 100644
index b1a8adb..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he509.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he510.png b/app/src/main/res/drawable-xhdpi/he510.png
deleted file mode 100644
index eecaf5d..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he510.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he511.png b/app/src/main/res/drawable-xhdpi/he511.png
deleted file mode 100644
index b0bcd8e..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he511.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he512.png b/app/src/main/res/drawable-xhdpi/he512.png
deleted file mode 100644
index 0d98a13..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he512.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he513.png b/app/src/main/res/drawable-xhdpi/he513.png
deleted file mode 100644
index e1128ff..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he513.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he514.png b/app/src/main/res/drawable-xhdpi/he514.png
deleted file mode 100644
index cb9adbc..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he514.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he515.png b/app/src/main/res/drawable-xhdpi/he515.png
deleted file mode 100644
index 2faa917..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he515.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he900.png b/app/src/main/res/drawable-xhdpi/he900.png
deleted file mode 100644
index cbdb3e7..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he900.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he901.png b/app/src/main/res/drawable-xhdpi/he901.png
deleted file mode 100644
index bc6d105..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he901.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/he999.png b/app/src/main/res/drawable-xhdpi/he999.png
deleted file mode 100644
index 4ce8569..0000000
Binary files a/app/src/main/res/drawable-xhdpi/he999.png and /dev/null differ
diff --git a/app/src/main/res/drawable-xhdpi/icon_dictionary.png b/app/src/main/res/drawable-xhdpi/icon_dictionary.png
new file mode 100644
index 0000000..e883e31
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/icon_dictionary.png differ
diff --git a/app/src/main/res/drawable-xhdpi/icon_error_book.png b/app/src/main/res/drawable-xhdpi/icon_error_book.png
new file mode 100644
index 0000000..e0138a8
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/icon_error_book.png differ
diff --git a/app/src/main/res/drawable-xhdpi/icon_expand.png b/app/src/main/res/drawable-xhdpi/icon_expand.png
new file mode 100644
index 0000000..1a6ee43
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/icon_expand.png differ
diff --git a/app/src/main/res/drawable-xhdpi/icon_glossary.png b/app/src/main/res/drawable-xhdpi/icon_glossary.png
new file mode 100644
index 0000000..d83b0a0
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/icon_glossary.png differ
diff --git a/app/src/main/res/drawable-xhdpi/icon_homework.png b/app/src/main/res/drawable-xhdpi/icon_homework.png
new file mode 100644
index 0000000..adacb83
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/icon_homework.png differ
diff --git a/app/src/main/res/drawable-xhdpi/icon_listen.png b/app/src/main/res/drawable-xhdpi/icon_listen.png
new file mode 100644
index 0000000..7a0951e
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/icon_listen.png differ
diff --git a/app/src/main/res/drawable-xhdpi/icon_sync_exercises.png b/app/src/main/res/drawable-xhdpi/icon_sync_exercises.png
new file mode 100644
index 0000000..63f4b74
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/icon_sync_exercises.png differ
diff --git a/app/src/main/res/drawable-xhdpi/icon_textbook_sync.png b/app/src/main/res/drawable-xhdpi/icon_textbook_sync.png
new file mode 100644
index 0000000..6d85b98
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/icon_textbook_sync.png differ
diff --git a/app/src/main/res/drawable-xhdpi/main_background.png b/app/src/main/res/drawable-xhdpi/main_background.png
new file mode 100644
index 0000000..47115ac
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/main_background.png differ
diff --git a/app/src/main/res/drawable-xhdpi/math_box.png b/app/src/main/res/drawable-xhdpi/math_box.png
new file mode 100644
index 0000000..5da4ece
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/math_box.png differ
diff --git a/app/src/main/res/drawable-xhdpi/math_excellent_volume.png b/app/src/main/res/drawable-xhdpi/math_excellent_volume.png
new file mode 100644
index 0000000..1028a4e
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/math_excellent_volume.png differ
diff --git a/app/src/main/res/drawable-xhdpi/math_synchronous_explanation.png b/app/src/main/res/drawable-xhdpi/math_synchronous_explanation.png
new file mode 100644
index 0000000..f00916c
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/math_synchronous_explanation.png differ
diff --git a/app/src/main/res/drawable-xhdpi/math_unit_test.png b/app/src/main/res/drawable-xhdpi/math_unit_test.png
new file mode 100644
index 0000000..5d8d5e7
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/math_unit_test.png differ
diff --git a/app/src/main/res/drawable-xhdpi/physical_box.png b/app/src/main/res/drawable-xhdpi/physical_box.png
new file mode 100644
index 0000000..a62d575
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/physical_box.png differ
diff --git a/app/src/main/res/drawable-xhdpi/physical_fine_volume.png b/app/src/main/res/drawable-xhdpi/physical_fine_volume.png
new file mode 100644
index 0000000..653d641
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/physical_fine_volume.png differ
diff --git a/app/src/main/res/drawable-xhdpi/physical_lab.png b/app/src/main/res/drawable-xhdpi/physical_lab.png
new file mode 100644
index 0000000..32cafab
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/physical_lab.png differ
diff --git a/app/src/main/res/drawable-xhdpi/physical_synchronous_explanation.png b/app/src/main/res/drawable-xhdpi/physical_synchronous_explanation.png
new file mode 100644
index 0000000..9bc2ff5
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/physical_synchronous_explanation.png differ
diff --git a/app/src/main/res/drawable-xhdpi/physical_unit_tests.png b/app/src/main/res/drawable-xhdpi/physical_unit_tests.png
new file mode 100644
index 0000000..f5102be
Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/physical_unit_tests.png differ
diff --git a/app/src/main/res/drawable-xhdpi/weather2.png b/app/src/main/res/drawable-xhdpi/weather2.png
deleted file mode 100644
index f5ebf6d..0000000
Binary files a/app/src/main/res/drawable-xhdpi/weather2.png and /dev/null differ
diff --git a/app/src/main/res/drawable/custom_bg_ai.xml b/app/src/main/res/drawable/custom_bg_ai.xml
index 7e885b0..0889185 100644
--- a/app/src/main/res/drawable/custom_bg_ai.xml
+++ b/app/src/main/res/drawable/custom_bg_ai.xml
@@ -3,11 +3,11 @@
xmlns:android="http://schemas.android.com/apk/res/android">
+ android:color="@color/color_icon_background" />
+ android:topLeftRadius="@dimen/dp_8"
+ android:topRightRadius="@dimen/dp_8"
+ android:bottomLeftRadius="@dimen/dp_8"
+ android:bottomRightRadius="@dimen/dp_8" />
\ No newline at end of file
diff --git a/app/src/main/res/layout-land/activity_applist.xml b/app/src/main/res/layout-land/activity_applist.xml
deleted file mode 100644
index fafea65..0000000
--- a/app/src/main/res/layout-land/activity_applist.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/app/src/main/res/layout-land/activity_contact.xml b/app/src/main/res/layout-land/activity_contact.xml
deleted file mode 100644
index 806b8a0..0000000
--- a/app/src/main/res/layout-land/activity_contact.xml
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout-land/activity_emergency.xml b/app/src/main/res/layout-land/activity_emergency.xml
deleted file mode 100644
index 0aac31d..0000000
--- a/app/src/main/res/layout-land/activity_emergency.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout-land/activity_family_space.xml b/app/src/main/res/layout-land/activity_family_space.xml
deleted file mode 100644
index 90bf84c..0000000
--- a/app/src/main/res/layout-land/activity_family_space.xml
+++ /dev/null
@@ -1,84 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout-land/activity_main.xml b/app/src/main/res/layout-land/activity_main.xml
index 7c6882d..b2332fe 100644
--- a/app/src/main/res/layout-land/activity_main.xml
+++ b/app/src/main/res/layout-land/activity_main.xml
@@ -4,6 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
+ android:background="@drawable/main_background"
tools:context=".activity.main.MainActivity">
+ app:tl_textsize="@dimen/sp_12" />
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toBottomOf="@id/main_sliding_tab_layout" />
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout-land/activity_weather.xml b/app/src/main/res/layout-land/activity_weather.xml
deleted file mode 100644
index f57a916..0000000
--- a/app/src/main/res/layout-land/activity_weather.xml
+++ /dev/null
@@ -1,80 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout-land/fragment_biology.xml b/app/src/main/res/layout-land/fragment_biology.xml
new file mode 100644
index 0000000..a8124f5
--- /dev/null
+++ b/app/src/main/res/layout-land/fragment_biology.xml
@@ -0,0 +1,143 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout-land/fragment_chemical.xml b/app/src/main/res/layout-land/fragment_chemical.xml
new file mode 100644
index 0000000..e303a1a
--- /dev/null
+++ b/app/src/main/res/layout-land/fragment_chemical.xml
@@ -0,0 +1,109 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout-land/fragment_chinese.xml b/app/src/main/res/layout-land/fragment_chinese.xml
new file mode 100644
index 0000000..a7262fb
--- /dev/null
+++ b/app/src/main/res/layout-land/fragment_chinese.xml
@@ -0,0 +1,154 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout-land/fragment_control.xml b/app/src/main/res/layout-land/fragment_control.xml
deleted file mode 100644
index fcffc8c..0000000
--- a/app/src/main/res/layout-land/fragment_control.xml
+++ /dev/null
@@ -1,477 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout-land/fragment_custom.xml b/app/src/main/res/layout-land/fragment_custom.xml
deleted file mode 100644
index 9a2130d..0000000
--- a/app/src/main/res/layout-land/fragment_custom.xml
+++ /dev/null
@@ -1,594 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout-land/fragment_custom_back.xml b/app/src/main/res/layout-land/fragment_custom_back.xml
deleted file mode 100644
index 1eea6c1..0000000
--- a/app/src/main/res/layout-land/fragment_custom_back.xml
+++ /dev/null
@@ -1,422 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout-land/fragment_english.xml b/app/src/main/res/layout-land/fragment_english.xml
new file mode 100644
index 0000000..0eee5bd
--- /dev/null
+++ b/app/src/main/res/layout-land/fragment_english.xml
@@ -0,0 +1,167 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout-land/fragment_math.xml b/app/src/main/res/layout-land/fragment_math.xml
new file mode 100644
index 0000000..69167a4
--- /dev/null
+++ b/app/src/main/res/layout-land/fragment_math.xml
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout-land/fragment_physics.xml b/app/src/main/res/layout-land/fragment_physics.xml
new file mode 100644
index 0000000..e75c554
--- /dev/null
+++ b/app/src/main/res/layout-land/fragment_physics.xml
@@ -0,0 +1,143 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout-land/fragment_second.xml b/app/src/main/res/layout-land/fragment_second.xml
deleted file mode 100644
index 864d397..0000000
--- a/app/src/main/res/layout-land/fragment_second.xml
+++ /dev/null
@@ -1,608 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout-land/item_app.xml b/app/src/main/res/layout-land/item_app.xml
deleted file mode 100644
index c1faa54..0000000
--- a/app/src/main/res/layout-land/item_app.xml
+++ /dev/null
@@ -1,62 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout-land/item_contact.xml b/app/src/main/res/layout-land/item_contact.xml
deleted file mode 100644
index 51baa0d..0000000
--- a/app/src/main/res/layout-land/item_contact.xml
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout-land/item_weather.xml b/app/src/main/res/layout-land/item_weather.xml
deleted file mode 100644
index db8cef0..0000000
--- a/app/src/main/res/layout-land/item_weather.xml
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout-port/activity_applist.xml b/app/src/main/res/layout-port/activity_applist.xml
deleted file mode 100644
index fafea65..0000000
--- a/app/src/main/res/layout-port/activity_applist.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/app/src/main/res/layout-port/activity_contact.xml b/app/src/main/res/layout-port/activity_contact.xml
deleted file mode 100644
index 639ff2b..0000000
--- a/app/src/main/res/layout-port/activity_contact.xml
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout-port/activity_emergency.xml b/app/src/main/res/layout-port/activity_emergency.xml
deleted file mode 100644
index 5cc0c5a..0000000
--- a/app/src/main/res/layout-port/activity_emergency.xml
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout-port/activity_family_space.xml b/app/src/main/res/layout-port/activity_family_space.xml
deleted file mode 100644
index 90bf84c..0000000
--- a/app/src/main/res/layout-port/activity_family_space.xml
+++ /dev/null
@@ -1,84 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout-port/activity_weather.xml b/app/src/main/res/layout-port/activity_weather.xml
deleted file mode 100644
index 1892692..0000000
--- a/app/src/main/res/layout-port/activity_weather.xml
+++ /dev/null
@@ -1,79 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout-port/fragment_control.xml b/app/src/main/res/layout-port/fragment_control.xml
deleted file mode 100644
index aec34ff..0000000
--- a/app/src/main/res/layout-port/fragment_control.xml
+++ /dev/null
@@ -1,458 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout-port/fragment_custom.xml b/app/src/main/res/layout-port/fragment_custom.xml
deleted file mode 100644
index c8b791f..0000000
--- a/app/src/main/res/layout-port/fragment_custom.xml
+++ /dev/null
@@ -1,663 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout-port/fragment_second.xml b/app/src/main/res/layout-port/fragment_second.xml
deleted file mode 100644
index 93f82b2..0000000
--- a/app/src/main/res/layout-port/fragment_second.xml
+++ /dev/null
@@ -1,596 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout-port/item_app.xml b/app/src/main/res/layout-port/item_app.xml
deleted file mode 100644
index c1faa54..0000000
--- a/app/src/main/res/layout-port/item_app.xml
+++ /dev/null
@@ -1,62 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout-port/item_contact.xml b/app/src/main/res/layout-port/item_contact.xml
deleted file mode 100644
index d16f2fe..0000000
--- a/app/src/main/res/layout-port/item_contact.xml
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout-port/item_weather.xml b/app/src/main/res/layout-port/item_weather.xml
deleted file mode 100644
index 63c8c08..0000000
--- a/app/src/main/res/layout-port/item_weather.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_alarm_clock.xml b/app/src/main/res/layout/activity_alarm_clock.xml
deleted file mode 100644
index 98cdb62..0000000
--- a/app/src/main/res/layout/activity_alarm_clock.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_notice.xml b/app/src/main/res/layout/activity_notice.xml
deleted file mode 100644
index 9f9d31c..0000000
--- a/app/src/main/res/layout/activity_notice.xml
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_quick_app.xml b/app/src/main/res/layout/activity_quick_app.xml
deleted file mode 100644
index e4b5113..0000000
--- a/app/src/main/res/layout/activity_quick_app.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_applist.xml b/app/src/main/res/layout/fragment_applist.xml
deleted file mode 100644
index e655a1c..0000000
--- a/app/src/main/res/layout/fragment_applist.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout/item_actions.xml b/app/src/main/res/layout/item_actions.xml
deleted file mode 100644
index 02be38f..0000000
--- a/app/src/main/res/layout/item_actions.xml
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout/item_alarm_clock.xml b/app/src/main/res/layout/item_alarm_clock.xml
deleted file mode 100644
index 1ed694a..0000000
--- a/app/src/main/res/layout/item_alarm_clock.xml
+++ /dev/null
@@ -1,140 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout/item_alarmclock.xml b/app/src/main/res/layout/item_alarmclock.xml
deleted file mode 100644
index a50daea..0000000
--- a/app/src/main/res/layout/item_alarmclock.xml
+++ /dev/null
@@ -1,73 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout/item_app_select.xml b/app/src/main/res/layout/item_app_select.xml
deleted file mode 100644
index 4378edc..0000000
--- a/app/src/main/res/layout/item_app_select.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout/item_notification.xml b/app/src/main/res/layout/item_notification.xml
deleted file mode 100644
index 2055cda..0000000
--- a/app/src/main/res/layout/item_notification.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout/item_sosnumber.xml b/app/src/main/res/layout/item_sosnumber.xml
deleted file mode 100644
index 7cc743d..0000000
--- a/app/src/main/res/layout/item_sosnumber.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/values-sw1024dp/dimens.xml b/app/src/main/res/values-sw1024dp/dimens.xml
index 210e6b0..16f08b9 100644
--- a/app/src/main/res/values-sw1024dp/dimens.xml
+++ b/app/src/main/res/values-sw1024dp/dimens.xml
@@ -380,12 +380,145 @@
1018.3111dp
1021.1556dp
1024.0000dp
+ 1026.8444dp
+ 1029.6889dp
+ 1032.5333dp
+ 1035.3778dp
1038.2222dp
+ 1041.0667dp
+ 1043.9111dp
+ 1046.7556dp
+ 1049.6000dp
1052.4444dp
+ 1055.2889dp
+ 1058.1333dp
+ 1060.9778dp
+ 1063.8222dp
+ 1066.6667dp
+ 1069.5111dp
+ 1072.3556dp
+ 1075.2000dp
+ 1078.0444dp
+ 1080.8889dp
+ 1083.7333dp
+ 1086.5778dp
+ 1089.4222dp
+ 1092.2667dp
+ 1095.1111dp
+ 1097.9556dp
+ 1100.8000dp
+ 1103.6444dp
+ 1106.4889dp
+ 1109.3333dp
+ 1112.1778dp
+ 1115.0222dp
+ 1117.8667dp
+ 1120.7111dp
+ 1123.5556dp
+ 1126.4000dp
+ 1129.2444dp
+ 1132.0889dp
+ 1134.9333dp
1137.7778dp
+ 1140.6222dp
+ 1143.4667dp
+ 1146.3111dp
+ 1149.1556dp
+ 1152.0000dp
+ 1154.8444dp
+ 1157.6889dp
+ 1160.5333dp
+ 1163.3778dp
1166.2222dp
+ 1169.0667dp
+ 1171.9111dp
+ 1174.7556dp
+ 1177.6000dp
+ 1180.4444dp
+ 1183.2889dp
+ 1186.1333dp
+ 1188.9778dp
+ 1191.8222dp
+ 1194.6667dp
+ 1197.5111dp
1200.3556dp
+ 1203.2000dp
+ 1206.0444dp
+ 1208.8889dp
+ 1211.7333dp
+ 1214.5778dp
+ 1217.4222dp
+ 1220.2667dp
+ 1223.1111dp
+ 1225.9556dp
+ 1228.8000dp
+ 1231.6444dp
+ 1234.4889dp
+ 1237.3333dp
+ 1240.1778dp
+ 1243.0222dp
+ 1245.8667dp
+ 1248.7111dp
+ 1251.5556dp
+ 1254.4000dp
+ 1257.2444dp
+ 1260.0889dp
+ 1262.9333dp
+ 1265.7778dp
+ 1268.6222dp
+ 1271.4667dp
+ 1274.3111dp
+ 1277.1556dp
+ 1280.0000dp
+ 1282.8444dp
+ 1285.6889dp
+ 1288.5333dp
+ 1291.3778dp
+ 1294.2222dp
+ 1297.0667dp
+ 1299.9111dp
+ 1302.7556dp
+ 1305.6000dp
+ 1308.4444dp
+ 1311.2889dp
+ 1314.1333dp
+ 1316.9778dp
+ 1319.8222dp
+ 1322.6667dp
+ 1325.5111dp
+ 1328.3556dp
+ 1331.2000dp
+ 1334.0444dp
+ 1336.8889dp
+ 1339.7333dp
1342.5778dp
+ 1345.4222dp
+ 1348.2667dp
+ 1351.1111dp
+ 1353.9556dp
+ 1356.8000dp
+ 1359.6444dp
+ 1362.4889dp
+ 1365.3333dp
+ 1368.1778dp
+ 1371.0222dp
+ 1373.8667dp
+ 1376.7111dp
+ 1379.5556dp
+ 1382.4000dp
+ 1385.2444dp
+ 1388.0889dp
+ 1390.9333dp
+ 1393.7778dp
+ 1396.6222dp
+ 1399.4667dp
+ 1402.3111dp
+ 1405.1556dp
+ 1408.0000dp
+ 1410.8444dp
+ 1413.6889dp
+ 1416.5333dp
+ 1419.3778dp
1422.2222dp
1706.6667dp
1820.4444dp
@@ -415,13 +548,29 @@
65.4222sp
68.2667sp
71.1111sp
+ 73.9556sp
+ 76.8000sp
79.6444sp
+ 82.4889sp
85.3333sp
+ 88.1778sp
91.0222sp
+ 93.8667sp
96.7111sp
+ 99.5556sp
102.4000sp
+ 105.2444sp
108.0889sp
+ 110.9333sp
113.7778sp
+ 116.6222sp
119.4667sp
+ 122.3111sp
+ 125.1556sp
+ 128.0000sp
+ 130.8444sp
+ 133.6889sp
136.5333sp
+ 139.3778sp
+ 142.2222sp
diff --git a/app/src/main/res/values-sw1280dp/dimens.xml b/app/src/main/res/values-sw1280dp/dimens.xml
index efaccc6..ec79065 100644
--- a/app/src/main/res/values-sw1280dp/dimens.xml
+++ b/app/src/main/res/values-sw1280dp/dimens.xml
@@ -380,12 +380,145 @@
1272.8889dp
1276.4444dp
1280.0000dp
+ 1283.5556dp
+ 1287.1111dp
+ 1290.6667dp
+ 1294.2222dp
1297.7778dp
+ 1301.3333dp
+ 1304.8889dp
+ 1308.4444dp
+ 1312.0000dp
1315.5556dp
+ 1319.1111dp
+ 1322.6667dp
+ 1326.2222dp
+ 1329.7778dp
+ 1333.3333dp
+ 1336.8889dp
+ 1340.4444dp
+ 1344.0000dp
+ 1347.5556dp
+ 1351.1111dp
+ 1354.6667dp
+ 1358.2222dp
+ 1361.7778dp
+ 1365.3333dp
+ 1368.8889dp
+ 1372.4444dp
+ 1376.0000dp
+ 1379.5556dp
+ 1383.1111dp
+ 1386.6667dp
+ 1390.2222dp
+ 1393.7778dp
+ 1397.3333dp
+ 1400.8889dp
+ 1404.4444dp
+ 1408.0000dp
+ 1411.5556dp
+ 1415.1111dp
+ 1418.6667dp
1422.2222dp
+ 1425.7778dp
+ 1429.3333dp
+ 1432.8889dp
+ 1436.4444dp
+ 1440.0000dp
+ 1443.5556dp
+ 1447.1111dp
+ 1450.6667dp
+ 1454.2222dp
1457.7778dp
+ 1461.3333dp
+ 1464.8889dp
+ 1468.4444dp
+ 1472.0000dp
+ 1475.5556dp
+ 1479.1111dp
+ 1482.6667dp
+ 1486.2222dp
+ 1489.7778dp
+ 1493.3333dp
+ 1496.8889dp
1500.4444dp
+ 1504.0000dp
+ 1507.5556dp
+ 1511.1111dp
+ 1514.6667dp
+ 1518.2222dp
+ 1521.7778dp
+ 1525.3333dp
+ 1528.8889dp
+ 1532.4444dp
+ 1536.0000dp
+ 1539.5556dp
+ 1543.1111dp
+ 1546.6667dp
+ 1550.2222dp
+ 1553.7778dp
+ 1557.3333dp
+ 1560.8889dp
+ 1564.4444dp
+ 1568.0000dp
+ 1571.5556dp
+ 1575.1111dp
+ 1578.6667dp
+ 1582.2222dp
+ 1585.7778dp
+ 1589.3333dp
+ 1592.8889dp
+ 1596.4444dp
+ 1600.0000dp
+ 1603.5556dp
+ 1607.1111dp
+ 1610.6667dp
+ 1614.2222dp
+ 1617.7778dp
+ 1621.3333dp
+ 1624.8889dp
+ 1628.4444dp
+ 1632.0000dp
+ 1635.5556dp
+ 1639.1111dp
+ 1642.6667dp
+ 1646.2222dp
+ 1649.7778dp
+ 1653.3333dp
+ 1656.8889dp
+ 1660.4444dp
+ 1664.0000dp
+ 1667.5556dp
+ 1671.1111dp
+ 1674.6667dp
1678.2222dp
+ 1681.7778dp
+ 1685.3333dp
+ 1688.8889dp
+ 1692.4444dp
+ 1696.0000dp
+ 1699.5556dp
+ 1703.1111dp
+ 1706.6667dp
+ 1710.2222dp
+ 1713.7778dp
+ 1717.3333dp
+ 1720.8889dp
+ 1724.4444dp
+ 1728.0000dp
+ 1731.5556dp
+ 1735.1111dp
+ 1738.6667dp
+ 1742.2222dp
+ 1745.7778dp
+ 1749.3333dp
+ 1752.8889dp
+ 1756.4444dp
+ 1760.0000dp
+ 1763.5556dp
+ 1767.1111dp
+ 1770.6667dp
+ 1774.2222dp
1777.7778dp
2133.3333dp
2275.5556dp
@@ -415,13 +548,29 @@
81.7778sp
85.3333sp
88.8889sp
+ 92.4444sp
+ 96.0000sp
99.5556sp
+ 103.1111sp
106.6667sp
+ 110.2222sp
113.7778sp
+ 117.3333sp
120.8889sp
+ 124.4444sp
128.0000sp
+ 131.5556sp
135.1111sp
+ 138.6667sp
142.2222sp
+ 145.7778sp
149.3333sp
+ 152.8889sp
+ 156.4444sp
+ 160.0000sp
+ 163.5556sp
+ 167.1111sp
170.6667sp
+ 174.2222sp
+ 177.7778sp
diff --git a/app/src/main/res/values-sw1365dp/dimens.xml b/app/src/main/res/values-sw1365dp/dimens.xml
index b109d54..2520460 100644
--- a/app/src/main/res/values-sw1365dp/dimens.xml
+++ b/app/src/main/res/values-sw1365dp/dimens.xml
@@ -380,12 +380,145 @@
1357.4167dp
1361.2083dp
1365.0000dp
+ 1368.7917dp
+ 1372.5833dp
+ 1376.3750dp
+ 1380.1667dp
1383.9583dp
+ 1387.7500dp
+ 1391.5417dp
+ 1395.3333dp
+ 1399.1250dp
1402.9167dp
+ 1406.7083dp
+ 1410.5000dp
+ 1414.2917dp
+ 1418.0833dp
+ 1421.8750dp
+ 1425.6667dp
+ 1429.4583dp
+ 1433.2500dp
+ 1437.0417dp
+ 1440.8333dp
+ 1444.6250dp
+ 1448.4167dp
+ 1452.2083dp
+ 1456.0000dp
+ 1459.7917dp
+ 1463.5833dp
+ 1467.3750dp
+ 1471.1667dp
+ 1474.9583dp
+ 1478.7500dp
+ 1482.5417dp
+ 1486.3333dp
+ 1490.1250dp
+ 1493.9167dp
+ 1497.7083dp
+ 1501.5000dp
+ 1505.2917dp
+ 1509.0833dp
+ 1512.8750dp
1516.6667dp
+ 1520.4583dp
+ 1524.2500dp
+ 1528.0417dp
+ 1531.8333dp
+ 1535.6250dp
+ 1539.4167dp
+ 1543.2083dp
+ 1547.0000dp
+ 1550.7917dp
1554.5833dp
+ 1558.3750dp
+ 1562.1667dp
+ 1565.9583dp
+ 1569.7500dp
+ 1573.5417dp
+ 1577.3333dp
+ 1581.1250dp
+ 1584.9167dp
+ 1588.7083dp
+ 1592.5000dp
+ 1596.2917dp
1600.0833dp
+ 1603.8750dp
+ 1607.6667dp
+ 1611.4583dp
+ 1615.2500dp
+ 1619.0417dp
+ 1622.8333dp
+ 1626.6250dp
+ 1630.4167dp
+ 1634.2083dp
+ 1638.0000dp
+ 1641.7917dp
+ 1645.5833dp
+ 1649.3750dp
+ 1653.1667dp
+ 1656.9583dp
+ 1660.7500dp
+ 1664.5417dp
+ 1668.3333dp
+ 1672.1250dp
+ 1675.9167dp
+ 1679.7083dp
+ 1683.5000dp
+ 1687.2917dp
+ 1691.0833dp
+ 1694.8750dp
+ 1698.6667dp
+ 1702.4583dp
+ 1706.2500dp
+ 1710.0417dp
+ 1713.8333dp
+ 1717.6250dp
+ 1721.4167dp
+ 1725.2083dp
+ 1729.0000dp
+ 1732.7917dp
+ 1736.5833dp
+ 1740.3750dp
+ 1744.1667dp
+ 1747.9583dp
+ 1751.7500dp
+ 1755.5417dp
+ 1759.3333dp
+ 1763.1250dp
+ 1766.9167dp
+ 1770.7083dp
+ 1774.5000dp
+ 1778.2917dp
+ 1782.0833dp
+ 1785.8750dp
1789.6667dp
+ 1793.4583dp
+ 1797.2500dp
+ 1801.0417dp
+ 1804.8333dp
+ 1808.6250dp
+ 1812.4167dp
+ 1816.2083dp
+ 1820.0000dp
+ 1823.7917dp
+ 1827.5833dp
+ 1831.3750dp
+ 1835.1667dp
+ 1838.9583dp
+ 1842.7500dp
+ 1846.5417dp
+ 1850.3333dp
+ 1854.1250dp
+ 1857.9167dp
+ 1861.7083dp
+ 1865.5000dp
+ 1869.2917dp
+ 1873.0833dp
+ 1876.8750dp
+ 1880.6667dp
+ 1884.4583dp
+ 1888.2500dp
+ 1892.0417dp
1895.8333dp
2275.0000dp
2426.6667dp
@@ -415,13 +548,29 @@
87.2083sp
91.0000sp
94.7917sp
+ 98.5833sp
+ 102.3750sp
106.1667sp
+ 109.9583sp
113.7500sp
+ 117.5417sp
121.3333sp
+ 125.1250sp
128.9167sp
+ 132.7083sp
136.5000sp
+ 140.2917sp
144.0833sp
+ 147.8750sp
151.6667sp
+ 155.4583sp
159.2500sp
+ 163.0417sp
+ 166.8333sp
+ 170.6250sp
+ 174.4167sp
+ 178.2083sp
182.0000sp
+ 185.7917sp
+ 189.5833sp
diff --git a/app/src/main/res/values-sw320dp/dimens.xml b/app/src/main/res/values-sw320dp/dimens.xml
index 016af4e..caa602a 100644
--- a/app/src/main/res/values-sw320dp/dimens.xml
+++ b/app/src/main/res/values-sw320dp/dimens.xml
@@ -380,12 +380,145 @@
318.2222dp
319.1111dp
320.0000dp
+ 320.8889dp
+ 321.7778dp
+ 322.6667dp
+ 323.5556dp
324.4444dp
+ 325.3333dp
+ 326.2222dp
+ 327.1111dp
+ 328.0000dp
328.8889dp
+ 329.7778dp
+ 330.6667dp
+ 331.5556dp
+ 332.4444dp
+ 333.3333dp
+ 334.2222dp
+ 335.1111dp
+ 336.0000dp
+ 336.8889dp
+ 337.7778dp
+ 338.6667dp
+ 339.5556dp
+ 340.4444dp
+ 341.3333dp
+ 342.2222dp
+ 343.1111dp
+ 344.0000dp
+ 344.8889dp
+ 345.7778dp
+ 346.6667dp
+ 347.5556dp
+ 348.4444dp
+ 349.3333dp
+ 350.2222dp
+ 351.1111dp
+ 352.0000dp
+ 352.8889dp
+ 353.7778dp
+ 354.6667dp
355.5556dp
+ 356.4444dp
+ 357.3333dp
+ 358.2222dp
+ 359.1111dp
+ 360.0000dp
+ 360.8889dp
+ 361.7778dp
+ 362.6667dp
+ 363.5556dp
364.4444dp
+ 365.3333dp
+ 366.2222dp
+ 367.1111dp
+ 368.0000dp
+ 368.8889dp
+ 369.7778dp
+ 370.6667dp
+ 371.5556dp
+ 372.4444dp
+ 373.3333dp
+ 374.2222dp
375.1111dp
+ 376.0000dp
+ 376.8889dp
+ 377.7778dp
+ 378.6667dp
+ 379.5556dp
+ 380.4444dp
+ 381.3333dp
+ 382.2222dp
+ 383.1111dp
+ 384.0000dp
+ 384.8889dp
+ 385.7778dp
+ 386.6667dp
+ 387.5556dp
+ 388.4444dp
+ 389.3333dp
+ 390.2222dp
+ 391.1111dp
+ 392.0000dp
+ 392.8889dp
+ 393.7778dp
+ 394.6667dp
+ 395.5556dp
+ 396.4444dp
+ 397.3333dp
+ 398.2222dp
+ 399.1111dp
+ 400.0000dp
+ 400.8889dp
+ 401.7778dp
+ 402.6667dp
+ 403.5556dp
+ 404.4444dp
+ 405.3333dp
+ 406.2222dp
+ 407.1111dp
+ 408.0000dp
+ 408.8889dp
+ 409.7778dp
+ 410.6667dp
+ 411.5556dp
+ 412.4444dp
+ 413.3333dp
+ 414.2222dp
+ 415.1111dp
+ 416.0000dp
+ 416.8889dp
+ 417.7778dp
+ 418.6667dp
419.5556dp
+ 420.4444dp
+ 421.3333dp
+ 422.2222dp
+ 423.1111dp
+ 424.0000dp
+ 424.8889dp
+ 425.7778dp
+ 426.6667dp
+ 427.5556dp
+ 428.4444dp
+ 429.3333dp
+ 430.2222dp
+ 431.1111dp
+ 432.0000dp
+ 432.8889dp
+ 433.7778dp
+ 434.6667dp
+ 435.5556dp
+ 436.4444dp
+ 437.3333dp
+ 438.2222dp
+ 439.1111dp
+ 440.0000dp
+ 440.8889dp
+ 441.7778dp
+ 442.6667dp
+ 443.5556dp
444.4444dp
533.3333dp
568.8889dp
@@ -415,13 +548,29 @@
20.4444sp
21.3333sp
22.2222sp
+ 23.1111sp
+ 24.0000sp
24.8889sp
+ 25.7778sp
26.6667sp
+ 27.5556sp
28.4444sp
+ 29.3333sp
30.2222sp
+ 31.1111sp
32.0000sp
+ 32.8889sp
33.7778sp
+ 34.6667sp
35.5556sp
+ 36.4444sp
37.3333sp
+ 38.2222sp
+ 39.1111sp
+ 40.0000sp
+ 40.8889sp
+ 41.7778sp
42.6667sp
+ 43.5556sp
+ 44.4444sp
diff --git a/app/src/main/res/values-sw360dp/dimens.xml b/app/src/main/res/values-sw360dp/dimens.xml
index d235b06..b05b061 100644
--- a/app/src/main/res/values-sw360dp/dimens.xml
+++ b/app/src/main/res/values-sw360dp/dimens.xml
@@ -380,12 +380,145 @@
358.0000dp
359.0000dp
360.0000dp
+ 361.0000dp
+ 362.0000dp
+ 363.0000dp
+ 364.0000dp
365.0000dp
+ 366.0000dp
+ 367.0000dp
+ 368.0000dp
+ 369.0000dp
370.0000dp
+ 371.0000dp
+ 372.0000dp
+ 373.0000dp
+ 374.0000dp
+ 375.0000dp
+ 376.0000dp
+ 377.0000dp
+ 378.0000dp
+ 379.0000dp
+ 380.0000dp
+ 381.0000dp
+ 382.0000dp
+ 383.0000dp
+ 384.0000dp
+ 385.0000dp
+ 386.0000dp
+ 387.0000dp
+ 388.0000dp
+ 389.0000dp
+ 390.0000dp
+ 391.0000dp
+ 392.0000dp
+ 393.0000dp
+ 394.0000dp
+ 395.0000dp
+ 396.0000dp
+ 397.0000dp
+ 398.0000dp
+ 399.0000dp
400.0000dp
+ 401.0000dp
+ 402.0000dp
+ 403.0000dp
+ 404.0000dp
+ 405.0000dp
+ 406.0000dp
+ 407.0000dp
+ 408.0000dp
+ 409.0000dp
410.0000dp
+ 411.0000dp
+ 412.0000dp
+ 413.0000dp
+ 414.0000dp
+ 415.0000dp
+ 416.0000dp
+ 417.0000dp
+ 418.0000dp
+ 419.0000dp
+ 420.0000dp
+ 421.0000dp
422.0000dp
+ 423.0000dp
+ 424.0000dp
+ 425.0000dp
+ 426.0000dp
+ 427.0000dp
+ 428.0000dp
+ 429.0000dp
+ 430.0000dp
+ 431.0000dp
+ 432.0000dp
+ 433.0000dp
+ 434.0000dp
+ 435.0000dp
+ 436.0000dp
+ 437.0000dp
+ 438.0000dp
+ 439.0000dp
+ 440.0000dp
+ 441.0000dp
+ 442.0000dp
+ 443.0000dp
+ 444.0000dp
+ 445.0000dp
+ 446.0000dp
+ 447.0000dp
+ 448.0000dp
+ 449.0000dp
+ 450.0000dp
+ 451.0000dp
+ 452.0000dp
+ 453.0000dp
+ 454.0000dp
+ 455.0000dp
+ 456.0000dp
+ 457.0000dp
+ 458.0000dp
+ 459.0000dp
+ 460.0000dp
+ 461.0000dp
+ 462.0000dp
+ 463.0000dp
+ 464.0000dp
+ 465.0000dp
+ 466.0000dp
+ 467.0000dp
+ 468.0000dp
+ 469.0000dp
+ 470.0000dp
+ 471.0000dp
472.0000dp
+ 473.0000dp
+ 474.0000dp
+ 475.0000dp
+ 476.0000dp
+ 477.0000dp
+ 478.0000dp
+ 479.0000dp
+ 480.0000dp
+ 481.0000dp
+ 482.0000dp
+ 483.0000dp
+ 484.0000dp
+ 485.0000dp
+ 486.0000dp
+ 487.0000dp
+ 488.0000dp
+ 489.0000dp
+ 490.0000dp
+ 491.0000dp
+ 492.0000dp
+ 493.0000dp
+ 494.0000dp
+ 495.0000dp
+ 496.0000dp
+ 497.0000dp
+ 498.0000dp
+ 499.0000dp
500.0000dp
600.0000dp
640.0000dp
@@ -415,13 +548,29 @@
23.0000sp
24.0000sp
25.0000sp
+ 26.0000sp
+ 27.0000sp
28.0000sp
+ 29.0000sp
30.0000sp
+ 31.0000sp
32.0000sp
+ 33.0000sp
34.0000sp
+ 35.0000sp
36.0000sp
+ 37.0000sp
38.0000sp
+ 39.0000sp
40.0000sp
+ 41.0000sp
42.0000sp
+ 43.0000sp
+ 44.0000sp
+ 45.0000sp
+ 46.0000sp
+ 47.0000sp
48.0000sp
+ 49.0000sp
+ 50.0000sp
diff --git a/app/src/main/res/values-sw362dp/dimens.xml b/app/src/main/res/values-sw362dp/dimens.xml
index bf56c40..c117c57 100644
--- a/app/src/main/res/values-sw362dp/dimens.xml
+++ b/app/src/main/res/values-sw362dp/dimens.xml
@@ -380,12 +380,145 @@
360.2515dp
361.2578dp
362.2641dp
+ 363.2704dp
+ 364.2767dp
+ 365.2830dp
+ 366.2893dp
367.2955dp
+ 368.3018dp
+ 369.3081dp
+ 370.3144dp
+ 371.3207dp
372.3270dp
+ 373.3333dp
+ 374.3396dp
+ 375.3459dp
+ 376.3521dp
+ 377.3584dp
+ 378.3647dp
+ 379.3710dp
+ 380.3773dp
+ 381.3836dp
+ 382.3899dp
+ 383.3962dp
+ 384.4025dp
+ 385.4088dp
+ 386.4150dp
+ 387.4213dp
+ 388.4276dp
+ 389.4339dp
+ 390.4402dp
+ 391.4465dp
+ 392.4528dp
+ 393.4591dp
+ 394.4654dp
+ 395.4716dp
+ 396.4779dp
+ 397.4842dp
+ 398.4905dp
+ 399.4968dp
+ 400.5031dp
+ 401.5094dp
402.5157dp
+ 403.5220dp
+ 404.5282dp
+ 405.5345dp
+ 406.5408dp
+ 407.5471dp
+ 408.5534dp
+ 409.5597dp
+ 410.5660dp
+ 411.5723dp
412.5786dp
+ 413.5848dp
+ 414.5911dp
+ 415.5974dp
+ 416.6037dp
+ 417.6100dp
+ 418.6163dp
+ 419.6226dp
+ 420.6289dp
+ 421.6352dp
+ 422.6415dp
+ 423.6477dp
424.6540dp
+ 425.6603dp
+ 426.6666dp
+ 427.6729dp
+ 428.6792dp
+ 429.6855dp
+ 430.6918dp
+ 431.6981dp
+ 432.7043dp
+ 433.7106dp
+ 434.7169dp
+ 435.7232dp
+ 436.7295dp
+ 437.7358dp
+ 438.7421dp
+ 439.7484dp
+ 440.7547dp
+ 441.7609dp
+ 442.7672dp
+ 443.7735dp
+ 444.7798dp
+ 445.7861dp
+ 446.7924dp
+ 447.7987dp
+ 448.8050dp
+ 449.8113dp
+ 450.8175dp
+ 451.8238dp
+ 452.8301dp
+ 453.8364dp
+ 454.8427dp
+ 455.8490dp
+ 456.8553dp
+ 457.8616dp
+ 458.8679dp
+ 459.8741dp
+ 460.8804dp
+ 461.8867dp
+ 462.8930dp
+ 463.8993dp
+ 464.9056dp
+ 465.9119dp
+ 466.9182dp
+ 467.9245dp
+ 468.9308dp
+ 469.9370dp
+ 470.9433dp
+ 471.9496dp
+ 472.9559dp
+ 473.9622dp
474.9685dp
+ 475.9748dp
+ 476.9811dp
+ 477.9874dp
+ 478.9936dp
+ 479.9999dp
+ 481.0062dp
+ 482.0125dp
+ 483.0188dp
+ 484.0251dp
+ 485.0314dp
+ 486.0377dp
+ 487.0440dp
+ 488.0502dp
+ 489.0565dp
+ 490.0628dp
+ 491.0691dp
+ 492.0754dp
+ 493.0817dp
+ 494.0880dp
+ 495.0943dp
+ 496.1006dp
+ 497.1068dp
+ 498.1131dp
+ 499.1194dp
+ 500.1257dp
+ 501.1320dp
+ 502.1383dp
503.1446dp
603.7735dp
644.0251dp
@@ -415,13 +548,29 @@
23.1447sp
24.1509sp
25.1572sp
+ 26.1635sp
+ 27.1698sp
28.1761sp
+ 29.1824sp
30.1887sp
+ 31.1950sp
32.2013sp
+ 33.2075sp
34.2138sp
+ 35.2201sp
36.2264sp
+ 37.2327sp
38.2390sp
+ 39.2453sp
40.2516sp
+ 41.2579sp
42.2641sp
+ 43.2704sp
+ 44.2767sp
+ 45.2830sp
+ 46.2893sp
+ 47.2956sp
48.3019sp
+ 49.3082sp
+ 50.3145sp
diff --git a/app/src/main/res/values-sw384dp/dimens.xml b/app/src/main/res/values-sw384dp/dimens.xml
index 4cfeee5..1d636b0 100644
--- a/app/src/main/res/values-sw384dp/dimens.xml
+++ b/app/src/main/res/values-sw384dp/dimens.xml
@@ -380,12 +380,145 @@
381.8667dp
382.9333dp
384.0000dp
+ 385.0667dp
+ 386.1333dp
+ 387.2000dp
+ 388.2667dp
389.3333dp
+ 390.4000dp
+ 391.4667dp
+ 392.5333dp
+ 393.6000dp
394.6667dp
+ 395.7333dp
+ 396.8000dp
+ 397.8667dp
+ 398.9333dp
+ 400.0000dp
+ 401.0667dp
+ 402.1333dp
+ 403.2000dp
+ 404.2667dp
+ 405.3333dp
+ 406.4000dp
+ 407.4667dp
+ 408.5333dp
+ 409.6000dp
+ 410.6667dp
+ 411.7333dp
+ 412.8000dp
+ 413.8667dp
+ 414.9333dp
+ 416.0000dp
+ 417.0667dp
+ 418.1333dp
+ 419.2000dp
+ 420.2667dp
+ 421.3333dp
+ 422.4000dp
+ 423.4667dp
+ 424.5333dp
+ 425.6000dp
426.6667dp
+ 427.7333dp
+ 428.8000dp
+ 429.8667dp
+ 430.9333dp
+ 432.0000dp
+ 433.0667dp
+ 434.1333dp
+ 435.2000dp
+ 436.2667dp
437.3333dp
+ 438.4000dp
+ 439.4667dp
+ 440.5333dp
+ 441.6000dp
+ 442.6667dp
+ 443.7333dp
+ 444.8000dp
+ 445.8667dp
+ 446.9333dp
+ 448.0000dp
+ 449.0667dp
450.1333dp
+ 451.2000dp
+ 452.2667dp
+ 453.3333dp
+ 454.4000dp
+ 455.4667dp
+ 456.5333dp
+ 457.6000dp
+ 458.6667dp
+ 459.7333dp
+ 460.8000dp
+ 461.8667dp
+ 462.9333dp
+ 464.0000dp
+ 465.0667dp
+ 466.1333dp
+ 467.2000dp
+ 468.2667dp
+ 469.3333dp
+ 470.4000dp
+ 471.4667dp
+ 472.5333dp
+ 473.6000dp
+ 474.6667dp
+ 475.7333dp
+ 476.8000dp
+ 477.8667dp
+ 478.9333dp
+ 480.0000dp
+ 481.0667dp
+ 482.1333dp
+ 483.2000dp
+ 484.2667dp
+ 485.3333dp
+ 486.4000dp
+ 487.4667dp
+ 488.5333dp
+ 489.6000dp
+ 490.6667dp
+ 491.7333dp
+ 492.8000dp
+ 493.8667dp
+ 494.9333dp
+ 496.0000dp
+ 497.0667dp
+ 498.1333dp
+ 499.2000dp
+ 500.2667dp
+ 501.3333dp
+ 502.4000dp
503.4667dp
+ 504.5333dp
+ 505.6000dp
+ 506.6667dp
+ 507.7333dp
+ 508.8000dp
+ 509.8667dp
+ 510.9333dp
+ 512.0000dp
+ 513.0667dp
+ 514.1333dp
+ 515.2000dp
+ 516.2667dp
+ 517.3333dp
+ 518.4000dp
+ 519.4667dp
+ 520.5333dp
+ 521.6000dp
+ 522.6667dp
+ 523.7333dp
+ 524.8000dp
+ 525.8667dp
+ 526.9333dp
+ 528.0000dp
+ 529.0667dp
+ 530.1333dp
+ 531.2000dp
+ 532.2667dp
533.3333dp
640.0000dp
682.6667dp
@@ -415,13 +548,29 @@
24.5333sp
25.6000sp
26.6667sp
+ 27.7333sp
+ 28.8000sp
29.8667sp
+ 30.9333sp
32.0000sp
+ 33.0667sp
34.1333sp
+ 35.2000sp
36.2667sp
+ 37.3333sp
38.4000sp
+ 39.4667sp
40.5333sp
+ 41.6000sp
42.6667sp
+ 43.7333sp
44.8000sp
+ 45.8667sp
+ 46.9333sp
+ 48.0000sp
+ 49.0667sp
+ 50.1333sp
51.2000sp
+ 52.2667sp
+ 53.3333sp
diff --git a/app/src/main/res/values-sw392dp/dimens.xml b/app/src/main/res/values-sw392dp/dimens.xml
index 07ab6b6..35902d8 100644
--- a/app/src/main/res/values-sw392dp/dimens.xml
+++ b/app/src/main/res/values-sw392dp/dimens.xml
@@ -380,12 +380,145 @@
390.5454dp
391.6363dp
392.7272dp
+ 393.8181dp
+ 394.9090dp
+ 395.9999dp
+ 397.0908dp
398.1817dp
+ 399.2727dp
+ 400.3636dp
+ 401.4545dp
+ 402.5454dp
403.6363dp
+ 404.7272dp
+ 405.8181dp
+ 406.9090dp
+ 407.9999dp
+ 409.0908dp
+ 410.1817dp
+ 411.2727dp
+ 412.3636dp
+ 413.4545dp
+ 414.5454dp
+ 415.6363dp
+ 416.7272dp
+ 417.8181dp
+ 418.9090dp
+ 419.9999dp
+ 421.0908dp
+ 422.1817dp
+ 423.2726dp
+ 424.3636dp
+ 425.4545dp
+ 426.5454dp
+ 427.6363dp
+ 428.7272dp
+ 429.8181dp
+ 430.9090dp
+ 431.9999dp
+ 433.0908dp
+ 434.1817dp
+ 435.2726dp
436.3636dp
+ 437.4545dp
+ 438.5454dp
+ 439.6363dp
+ 440.7272dp
+ 441.8181dp
+ 442.9090dp
+ 443.9999dp
+ 445.0908dp
+ 446.1817dp
447.2726dp
+ 448.3636dp
+ 449.4545dp
+ 450.5454dp
+ 451.6363dp
+ 452.7272dp
+ 453.8181dp
+ 454.9090dp
+ 455.9999dp
+ 457.0908dp
+ 458.1817dp
+ 459.2726dp
460.3636dp
+ 461.4545dp
+ 462.5454dp
+ 463.6363dp
+ 464.7272dp
+ 465.8181dp
+ 466.9090dp
+ 467.9999dp
+ 469.0908dp
+ 470.1817dp
+ 471.2726dp
+ 472.3635dp
+ 473.4545dp
+ 474.5454dp
+ 475.6363dp
+ 476.7272dp
+ 477.8181dp
+ 478.9090dp
+ 479.9999dp
+ 481.0908dp
+ 482.1817dp
+ 483.2726dp
+ 484.3635dp
+ 485.4545dp
+ 486.5454dp
+ 487.6363dp
+ 488.7272dp
+ 489.8181dp
+ 490.9090dp
+ 491.9999dp
+ 493.0908dp
+ 494.1817dp
+ 495.2726dp
+ 496.3635dp
+ 497.4545dp
+ 498.5454dp
+ 499.6363dp
+ 500.7272dp
+ 501.8181dp
+ 502.9090dp
+ 503.9999dp
+ 505.0908dp
+ 506.1817dp
+ 507.2726dp
+ 508.3635dp
+ 509.4545dp
+ 510.5454dp
+ 511.6363dp
+ 512.7272dp
+ 513.8181dp
514.9090dp
+ 515.9999dp
+ 517.0908dp
+ 518.1817dp
+ 519.2726dp
+ 520.3635dp
+ 521.4544dp
+ 522.5454dp
+ 523.6363dp
+ 524.7272dp
+ 525.8181dp
+ 526.9090dp
+ 527.9999dp
+ 529.0908dp
+ 530.1817dp
+ 531.2726dp
+ 532.3635dp
+ 533.4544dp
+ 534.5454dp
+ 535.6363dp
+ 536.7272dp
+ 537.8181dp
+ 538.9090dp
+ 539.9999dp
+ 541.0908dp
+ 542.1817dp
+ 543.2726dp
+ 544.3635dp
545.4544dp
654.5453dp
698.1817dp
@@ -415,13 +548,29 @@
25.0909sp
26.1818sp
27.2727sp
+ 28.3636sp
+ 29.4545sp
30.5454sp
+ 31.6364sp
32.7273sp
+ 33.8182sp
34.9091sp
+ 36.0000sp
37.0909sp
+ 38.1818sp
39.2727sp
+ 40.3636sp
41.4545sp
+ 42.5454sp
43.6364sp
+ 44.7273sp
45.8182sp
+ 46.9091sp
+ 48.0000sp
+ 49.0909sp
+ 50.1818sp
+ 51.2727sp
52.3636sp
+ 53.4545sp
+ 54.5454sp
diff --git a/app/src/main/res/values-sw400dp/dimens.xml b/app/src/main/res/values-sw400dp/dimens.xml
index 1866b65..a0dfd31 100644
--- a/app/src/main/res/values-sw400dp/dimens.xml
+++ b/app/src/main/res/values-sw400dp/dimens.xml
@@ -380,12 +380,145 @@
397.7778dp
398.8889dp
400.0000dp
+ 401.1111dp
+ 402.2222dp
+ 403.3333dp
+ 404.4444dp
405.5556dp
+ 406.6667dp
+ 407.7778dp
+ 408.8889dp
+ 410.0000dp
411.1111dp
+ 412.2222dp
+ 413.3333dp
+ 414.4444dp
+ 415.5556dp
+ 416.6667dp
+ 417.7778dp
+ 418.8889dp
+ 420.0000dp
+ 421.1111dp
+ 422.2222dp
+ 423.3333dp
+ 424.4444dp
+ 425.5556dp
+ 426.6667dp
+ 427.7778dp
+ 428.8889dp
+ 430.0000dp
+ 431.1111dp
+ 432.2222dp
+ 433.3333dp
+ 434.4444dp
+ 435.5556dp
+ 436.6667dp
+ 437.7778dp
+ 438.8889dp
+ 440.0000dp
+ 441.1111dp
+ 442.2222dp
+ 443.3333dp
444.4444dp
+ 445.5556dp
+ 446.6667dp
+ 447.7778dp
+ 448.8889dp
+ 450.0000dp
+ 451.1111dp
+ 452.2222dp
+ 453.3333dp
+ 454.4444dp
455.5556dp
+ 456.6667dp
+ 457.7778dp
+ 458.8889dp
+ 460.0000dp
+ 461.1111dp
+ 462.2222dp
+ 463.3333dp
+ 464.4444dp
+ 465.5556dp
+ 466.6667dp
+ 467.7778dp
468.8889dp
+ 470.0000dp
+ 471.1111dp
+ 472.2222dp
+ 473.3333dp
+ 474.4444dp
+ 475.5556dp
+ 476.6667dp
+ 477.7778dp
+ 478.8889dp
+ 480.0000dp
+ 481.1111dp
+ 482.2222dp
+ 483.3333dp
+ 484.4444dp
+ 485.5556dp
+ 486.6667dp
+ 487.7778dp
+ 488.8889dp
+ 490.0000dp
+ 491.1111dp
+ 492.2222dp
+ 493.3333dp
+ 494.4444dp
+ 495.5556dp
+ 496.6667dp
+ 497.7778dp
+ 498.8889dp
+ 500.0000dp
+ 501.1111dp
+ 502.2222dp
+ 503.3333dp
+ 504.4444dp
+ 505.5556dp
+ 506.6667dp
+ 507.7778dp
+ 508.8889dp
+ 510.0000dp
+ 511.1111dp
+ 512.2222dp
+ 513.3333dp
+ 514.4444dp
+ 515.5556dp
+ 516.6667dp
+ 517.7778dp
+ 518.8889dp
+ 520.0000dp
+ 521.1111dp
+ 522.2222dp
+ 523.3333dp
524.4444dp
+ 525.5556dp
+ 526.6667dp
+ 527.7778dp
+ 528.8889dp
+ 530.0000dp
+ 531.1111dp
+ 532.2222dp
+ 533.3333dp
+ 534.4444dp
+ 535.5556dp
+ 536.6667dp
+ 537.7778dp
+ 538.8889dp
+ 540.0000dp
+ 541.1111dp
+ 542.2222dp
+ 543.3333dp
+ 544.4444dp
+ 545.5556dp
+ 546.6667dp
+ 547.7778dp
+ 548.8889dp
+ 550.0000dp
+ 551.1111dp
+ 552.2222dp
+ 553.3333dp
+ 554.4444dp
555.5556dp
666.6667dp
711.1111dp
@@ -415,13 +548,29 @@
25.5556sp
26.6667sp
27.7778sp
+ 28.8889sp
+ 30.0000sp
31.1111sp
+ 32.2222sp
33.3333sp
+ 34.4444sp
35.5556sp
+ 36.6667sp
37.7778sp
+ 38.8889sp
40.0000sp
+ 41.1111sp
42.2222sp
+ 43.3333sp
44.4444sp
+ 45.5556sp
46.6667sp
+ 47.7778sp
+ 48.8889sp
+ 50.0000sp
+ 51.1111sp
+ 52.2222sp
53.3333sp
+ 54.4444sp
+ 55.5556sp
diff --git a/app/src/main/res/values-sw410dp/dimens.xml b/app/src/main/res/values-sw410dp/dimens.xml
index 2667a21..b0fc5ea 100644
--- a/app/src/main/res/values-sw410dp/dimens.xml
+++ b/app/src/main/res/values-sw410dp/dimens.xml
@@ -380,12 +380,145 @@
407.7222dp
408.8611dp
410.0000dp
+ 411.1389dp
+ 412.2778dp
+ 413.4167dp
+ 414.5556dp
415.6944dp
+ 416.8333dp
+ 417.9722dp
+ 419.1111dp
+ 420.2500dp
421.3889dp
+ 422.5278dp
+ 423.6667dp
+ 424.8056dp
+ 425.9444dp
+ 427.0833dp
+ 428.2222dp
+ 429.3611dp
+ 430.5000dp
+ 431.6389dp
+ 432.7778dp
+ 433.9167dp
+ 435.0556dp
+ 436.1944dp
+ 437.3333dp
+ 438.4722dp
+ 439.6111dp
+ 440.7500dp
+ 441.8889dp
+ 443.0278dp
+ 444.1667dp
+ 445.3056dp
+ 446.4444dp
+ 447.5833dp
+ 448.7222dp
+ 449.8611dp
+ 451.0000dp
+ 452.1389dp
+ 453.2778dp
+ 454.4167dp
455.5556dp
+ 456.6944dp
+ 457.8333dp
+ 458.9722dp
+ 460.1111dp
+ 461.2500dp
+ 462.3889dp
+ 463.5278dp
+ 464.6667dp
+ 465.8056dp
466.9444dp
+ 468.0833dp
+ 469.2222dp
+ 470.3611dp
+ 471.5000dp
+ 472.6389dp
+ 473.7778dp
+ 474.9167dp
+ 476.0556dp
+ 477.1944dp
+ 478.3333dp
+ 479.4722dp
480.6111dp
+ 481.7500dp
+ 482.8889dp
+ 484.0278dp
+ 485.1667dp
+ 486.3056dp
+ 487.4444dp
+ 488.5833dp
+ 489.7222dp
+ 490.8611dp
+ 492.0000dp
+ 493.1389dp
+ 494.2778dp
+ 495.4167dp
+ 496.5556dp
+ 497.6944dp
+ 498.8333dp
+ 499.9722dp
+ 501.1111dp
+ 502.2500dp
+ 503.3889dp
+ 504.5278dp
+ 505.6667dp
+ 506.8056dp
+ 507.9444dp
+ 509.0833dp
+ 510.2222dp
+ 511.3611dp
+ 512.5000dp
+ 513.6389dp
+ 514.7778dp
+ 515.9167dp
+ 517.0556dp
+ 518.1944dp
+ 519.3333dp
+ 520.4722dp
+ 521.6111dp
+ 522.7500dp
+ 523.8889dp
+ 525.0278dp
+ 526.1667dp
+ 527.3056dp
+ 528.4444dp
+ 529.5833dp
+ 530.7222dp
+ 531.8611dp
+ 533.0000dp
+ 534.1389dp
+ 535.2778dp
+ 536.4167dp
537.5556dp
+ 538.6944dp
+ 539.8333dp
+ 540.9722dp
+ 542.1111dp
+ 543.2500dp
+ 544.3889dp
+ 545.5278dp
+ 546.6667dp
+ 547.8056dp
+ 548.9444dp
+ 550.0833dp
+ 551.2222dp
+ 552.3611dp
+ 553.5000dp
+ 554.6389dp
+ 555.7778dp
+ 556.9167dp
+ 558.0556dp
+ 559.1944dp
+ 560.3333dp
+ 561.4722dp
+ 562.6111dp
+ 563.7500dp
+ 564.8889dp
+ 566.0278dp
+ 567.1667dp
+ 568.3056dp
569.4444dp
683.3333dp
728.8889dp
@@ -415,13 +548,29 @@
26.1944sp
27.3333sp
28.4722sp
+ 29.6111sp
+ 30.7500sp
31.8889sp
+ 33.0278sp
34.1667sp
+ 35.3056sp
36.4444sp
+ 37.5833sp
38.7222sp
+ 39.8611sp
41.0000sp
+ 42.1389sp
43.2778sp
+ 44.4167sp
45.5556sp
+ 46.6944sp
47.8333sp
+ 48.9722sp
+ 50.1111sp
+ 51.2500sp
+ 52.3889sp
+ 53.5278sp
54.6667sp
+ 55.8056sp
+ 56.9444sp
diff --git a/app/src/main/res/values-sw411dp/dimens.xml b/app/src/main/res/values-sw411dp/dimens.xml
index 1db36d1..fa6ffee 100644
--- a/app/src/main/res/values-sw411dp/dimens.xml
+++ b/app/src/main/res/values-sw411dp/dimens.xml
@@ -380,12 +380,145 @@
409.1428dp
410.2856dp
411.4285dp
+ 412.5714dp
+ 413.7142dp
+ 414.8571dp
+ 415.9999dp
417.1428dp
+ 418.2856dp
+ 419.4285dp
+ 420.5714dp
+ 421.7142dp
422.8571dp
+ 423.9999dp
+ 425.1428dp
+ 426.2856dp
+ 427.4285dp
+ 428.5714dp
+ 429.7142dp
+ 430.8571dp
+ 431.9999dp
+ 433.1428dp
+ 434.2856dp
+ 435.4285dp
+ 436.5714dp
+ 437.7142dp
+ 438.8571dp
+ 439.9999dp
+ 441.1428dp
+ 442.2856dp
+ 443.4285dp
+ 444.5714dp
+ 445.7142dp
+ 446.8571dp
+ 447.9999dp
+ 449.1428dp
+ 450.2856dp
+ 451.4285dp
+ 452.5713dp
+ 453.7142dp
+ 454.8571dp
+ 455.9999dp
457.1428dp
+ 458.2856dp
+ 459.4285dp
+ 460.5713dp
+ 461.7142dp
+ 462.8571dp
+ 463.9999dp
+ 465.1428dp
+ 466.2856dp
+ 467.4285dp
468.5713dp
+ 469.7142dp
+ 470.8571dp
+ 471.9999dp
+ 473.1428dp
+ 474.2856dp
+ 475.4285dp
+ 476.5713dp
+ 477.7142dp
+ 478.8571dp
+ 479.9999dp
+ 481.1428dp
482.2856dp
+ 483.4285dp
+ 484.5713dp
+ 485.7142dp
+ 486.8571dp
+ 487.9999dp
+ 489.1428dp
+ 490.2856dp
+ 491.4285dp
+ 492.5713dp
+ 493.7142dp
+ 494.8571dp
+ 495.9999dp
+ 497.1428dp
+ 498.2856dp
+ 499.4285dp
+ 500.5713dp
+ 501.7142dp
+ 502.8571dp
+ 503.9999dp
+ 505.1428dp
+ 506.2856dp
+ 507.4285dp
+ 508.5713dp
+ 509.7142dp
+ 510.8571dp
+ 511.9999dp
+ 513.1428dp
+ 514.2856dp
+ 515.4285dp
+ 516.5713dp
+ 517.7142dp
+ 518.8571dp
+ 519.9999dp
+ 521.1428dp
+ 522.2856dp
+ 523.4285dp
+ 524.5713dp
+ 525.7142dp
+ 526.8571dp
+ 527.9999dp
+ 529.1428dp
+ 530.2856dp
+ 531.4285dp
+ 532.5713dp
+ 533.7142dp
+ 534.8570dp
+ 535.9999dp
+ 537.1428dp
+ 538.2856dp
539.4285dp
+ 540.5713dp
+ 541.7142dp
+ 542.8570dp
+ 543.9999dp
+ 545.1428dp
+ 546.2856dp
+ 547.4285dp
+ 548.5713dp
+ 549.7142dp
+ 550.8570dp
+ 551.9999dp
+ 553.1428dp
+ 554.2856dp
+ 555.4285dp
+ 556.5713dp
+ 557.7142dp
+ 558.8570dp
+ 559.9999dp
+ 561.1428dp
+ 562.2856dp
+ 563.4285dp
+ 564.5713dp
+ 565.7142dp
+ 566.8570dp
+ 567.9999dp
+ 569.1428dp
+ 570.2856dp
571.4285dp
685.7142dp
731.4284dp
@@ -415,13 +548,29 @@
26.2857sp
27.4286sp
28.5714sp
+ 29.7143sp
+ 30.8571sp
32.0000sp
+ 33.1429sp
34.2857sp
+ 35.4286sp
36.5714sp
+ 37.7143sp
38.8571sp
+ 40.0000sp
41.1428sp
+ 42.2857sp
43.4286sp
+ 44.5714sp
45.7143sp
+ 46.8571sp
48.0000sp
+ 49.1428sp
+ 50.2857sp
+ 51.4286sp
+ 52.5714sp
+ 53.7143sp
54.8571sp
+ 56.0000sp
+ 57.1428sp
diff --git a/app/src/main/res/values-sw432dp/dimens.xml b/app/src/main/res/values-sw432dp/dimens.xml
index 4e0944f..143d28a 100644
--- a/app/src/main/res/values-sw432dp/dimens.xml
+++ b/app/src/main/res/values-sw432dp/dimens.xml
@@ -380,12 +380,145 @@
429.6000dp
430.8000dp
432.0000dp
+ 433.2000dp
+ 434.4000dp
+ 435.6000dp
+ 436.8000dp
438.0000dp
+ 439.2000dp
+ 440.4000dp
+ 441.6000dp
+ 442.8000dp
444.0000dp
+ 445.2000dp
+ 446.4000dp
+ 447.6000dp
+ 448.8000dp
+ 450.0000dp
+ 451.2000dp
+ 452.4000dp
+ 453.6000dp
+ 454.8000dp
+ 456.0000dp
+ 457.2000dp
+ 458.4000dp
+ 459.6000dp
+ 460.8000dp
+ 462.0000dp
+ 463.2000dp
+ 464.4000dp
+ 465.6000dp
+ 466.8000dp
+ 468.0000dp
+ 469.2000dp
+ 470.4000dp
+ 471.6000dp
+ 472.8000dp
+ 474.0000dp
+ 475.2000dp
+ 476.4000dp
+ 477.6000dp
+ 478.8000dp
480.0000dp
+ 481.2000dp
+ 482.4000dp
+ 483.6000dp
+ 484.8000dp
+ 486.0000dp
+ 487.2000dp
+ 488.4000dp
+ 489.6000dp
+ 490.8000dp
492.0000dp
+ 493.2000dp
+ 494.4000dp
+ 495.6000dp
+ 496.8000dp
+ 498.0000dp
+ 499.2000dp
+ 500.4000dp
+ 501.6000dp
+ 502.8000dp
+ 504.0000dp
+ 505.2000dp
506.4000dp
+ 507.6000dp
+ 508.8000dp
+ 510.0000dp
+ 511.2000dp
+ 512.4000dp
+ 513.6000dp
+ 514.8000dp
+ 516.0000dp
+ 517.2000dp
+ 518.4000dp
+ 519.6000dp
+ 520.8000dp
+ 522.0000dp
+ 523.2000dp
+ 524.4000dp
+ 525.6000dp
+ 526.8000dp
+ 528.0000dp
+ 529.2000dp
+ 530.4000dp
+ 531.6000dp
+ 532.8000dp
+ 534.0000dp
+ 535.2000dp
+ 536.4000dp
+ 537.6000dp
+ 538.8000dp
+ 540.0000dp
+ 541.2000dp
+ 542.4000dp
+ 543.6000dp
+ 544.8000dp
+ 546.0000dp
+ 547.2000dp
+ 548.4000dp
+ 549.6000dp
+ 550.8000dp
+ 552.0000dp
+ 553.2000dp
+ 554.4000dp
+ 555.6000dp
+ 556.8000dp
+ 558.0000dp
+ 559.2000dp
+ 560.4000dp
+ 561.6000dp
+ 562.8000dp
+ 564.0000dp
+ 565.2000dp
566.4000dp
+ 567.6000dp
+ 568.8000dp
+ 570.0000dp
+ 571.2000dp
+ 572.4000dp
+ 573.6000dp
+ 574.8000dp
+ 576.0000dp
+ 577.2000dp
+ 578.4000dp
+ 579.6000dp
+ 580.8000dp
+ 582.0000dp
+ 583.2000dp
+ 584.4000dp
+ 585.6000dp
+ 586.8000dp
+ 588.0000dp
+ 589.2000dp
+ 590.4000dp
+ 591.6000dp
+ 592.8000dp
+ 594.0000dp
+ 595.2000dp
+ 596.4000dp
+ 597.6000dp
+ 598.8000dp
600.0000dp
720.0000dp
768.0000dp
@@ -415,13 +548,29 @@
27.6000sp
28.8000sp
30.0000sp
+ 31.2000sp
+ 32.4000sp
33.6000sp
+ 34.8000sp
36.0000sp
+ 37.2000sp
38.4000sp
+ 39.6000sp
40.8000sp
+ 42.0000sp
43.2000sp
+ 44.4000sp
45.6000sp
+ 46.8000sp
48.0000sp
+ 49.2000sp
50.4000sp
+ 51.6000sp
+ 52.8000sp
+ 54.0000sp
+ 55.2000sp
+ 56.4000sp
57.6000sp
+ 58.8000sp
+ 60.0000sp
diff --git a/app/src/main/res/values-sw451dp/dimens.xml b/app/src/main/res/values-sw451dp/dimens.xml
index 77dd464..9bba075 100644
--- a/app/src/main/res/values-sw451dp/dimens.xml
+++ b/app/src/main/res/values-sw451dp/dimens.xml
@@ -380,12 +380,145 @@
449.2549dp
450.5098dp
451.7647dp
+ 453.0196dp
+ 454.2745dp
+ 455.5294dp
+ 456.7843dp
458.0392dp
+ 459.2941dp
+ 460.5490dp
+ 461.8039dp
+ 463.0588dp
464.3137dp
+ 465.5686dp
+ 466.8235dp
+ 468.0784dp
+ 469.3333dp
+ 470.5882dp
+ 471.8431dp
+ 473.0980dp
+ 474.3529dp
+ 475.6078dp
+ 476.8627dp
+ 478.1176dp
+ 479.3725dp
+ 480.6274dp
+ 481.8823dp
+ 483.1372dp
+ 484.3922dp
+ 485.6471dp
+ 486.9020dp
+ 488.1569dp
+ 489.4118dp
+ 490.6667dp
+ 491.9216dp
+ 493.1765dp
+ 494.4314dp
+ 495.6863dp
+ 496.9412dp
+ 498.1961dp
+ 499.4510dp
+ 500.7059dp
501.9608dp
+ 503.2157dp
+ 504.4706dp
+ 505.7255dp
+ 506.9804dp
+ 508.2353dp
+ 509.4902dp
+ 510.7451dp
+ 512.0000dp
+ 513.2549dp
514.5098dp
+ 515.7647dp
+ 517.0196dp
+ 518.2745dp
+ 519.5294dp
+ 520.7843dp
+ 522.0392dp
+ 523.2941dp
+ 524.5490dp
+ 525.8039dp
+ 527.0588dp
+ 528.3137dp
529.5686dp
+ 530.8235dp
+ 532.0784dp
+ 533.3333dp
+ 534.5882dp
+ 535.8431dp
+ 537.0980dp
+ 538.3529dp
+ 539.6078dp
+ 540.8627dp
+ 542.1176dp
+ 543.3725dp
+ 544.6274dp
+ 545.8823dp
+ 547.1372dp
+ 548.3921dp
+ 549.6471dp
+ 550.9020dp
+ 552.1569dp
+ 553.4118dp
+ 554.6667dp
+ 555.9216dp
+ 557.1765dp
+ 558.4314dp
+ 559.6863dp
+ 560.9412dp
+ 562.1961dp
+ 563.4510dp
+ 564.7059dp
+ 565.9608dp
+ 567.2157dp
+ 568.4706dp
+ 569.7255dp
+ 570.9804dp
+ 572.2353dp
+ 573.4902dp
+ 574.7451dp
+ 576.0000dp
+ 577.2549dp
+ 578.5098dp
+ 579.7647dp
+ 581.0196dp
+ 582.2745dp
+ 583.5294dp
+ 584.7843dp
+ 586.0392dp
+ 587.2941dp
+ 588.5490dp
+ 589.8039dp
+ 591.0588dp
592.3137dp
+ 593.5686dp
+ 594.8235dp
+ 596.0784dp
+ 597.3333dp
+ 598.5882dp
+ 599.8431dp
+ 601.0980dp
+ 602.3529dp
+ 603.6078dp
+ 604.8627dp
+ 606.1176dp
+ 607.3725dp
+ 608.6274dp
+ 609.8823dp
+ 611.1372dp
+ 612.3921dp
+ 613.6471dp
+ 614.9020dp
+ 616.1569dp
+ 617.4118dp
+ 618.6667dp
+ 619.9216dp
+ 621.1765dp
+ 622.4314dp
+ 623.6863dp
+ 624.9412dp
+ 626.1961dp
627.4510dp
752.9412dp
803.1372dp
@@ -415,13 +548,29 @@
28.8627sp
30.1176sp
31.3725sp
+ 32.6275sp
+ 33.8824sp
35.1373sp
+ 36.3922sp
37.6471sp
+ 38.9020sp
40.1569sp
+ 41.4118sp
42.6667sp
+ 43.9216sp
45.1765sp
+ 46.4314sp
47.6863sp
+ 48.9412sp
50.1961sp
+ 51.4510sp
52.7059sp
+ 53.9608sp
+ 55.2157sp
+ 56.4706sp
+ 57.7255sp
+ 58.9804sp
60.2353sp
+ 61.4902sp
+ 62.7451sp
diff --git a/app/src/main/res/values-sw480dp/dimens.xml b/app/src/main/res/values-sw480dp/dimens.xml
index 0ea4160..178ee32 100644
--- a/app/src/main/res/values-sw480dp/dimens.xml
+++ b/app/src/main/res/values-sw480dp/dimens.xml
@@ -380,12 +380,145 @@
477.3333dp
478.6667dp
480.0000dp
+ 481.3333dp
+ 482.6667dp
+ 484.0000dp
+ 485.3333dp
486.6667dp
+ 488.0000dp
+ 489.3333dp
+ 490.6667dp
+ 492.0000dp
493.3333dp
+ 494.6667dp
+ 496.0000dp
+ 497.3333dp
+ 498.6667dp
+ 500.0000dp
+ 501.3333dp
+ 502.6667dp
+ 504.0000dp
+ 505.3333dp
+ 506.6667dp
+ 508.0000dp
+ 509.3333dp
+ 510.6667dp
+ 512.0000dp
+ 513.3333dp
+ 514.6667dp
+ 516.0000dp
+ 517.3333dp
+ 518.6667dp
+ 520.0000dp
+ 521.3333dp
+ 522.6667dp
+ 524.0000dp
+ 525.3333dp
+ 526.6667dp
+ 528.0000dp
+ 529.3333dp
+ 530.6667dp
+ 532.0000dp
533.3333dp
+ 534.6667dp
+ 536.0000dp
+ 537.3333dp
+ 538.6667dp
+ 540.0000dp
+ 541.3333dp
+ 542.6667dp
+ 544.0000dp
+ 545.3333dp
546.6667dp
+ 548.0000dp
+ 549.3333dp
+ 550.6667dp
+ 552.0000dp
+ 553.3333dp
+ 554.6667dp
+ 556.0000dp
+ 557.3333dp
+ 558.6667dp
+ 560.0000dp
+ 561.3333dp
562.6667dp
+ 564.0000dp
+ 565.3333dp
+ 566.6667dp
+ 568.0000dp
+ 569.3333dp
+ 570.6667dp
+ 572.0000dp
+ 573.3333dp
+ 574.6667dp
+ 576.0000dp
+ 577.3333dp
+ 578.6667dp
+ 580.0000dp
+ 581.3333dp
+ 582.6667dp
+ 584.0000dp
+ 585.3333dp
+ 586.6667dp
+ 588.0000dp
+ 589.3333dp
+ 590.6667dp
+ 592.0000dp
+ 593.3333dp
+ 594.6667dp
+ 596.0000dp
+ 597.3333dp
+ 598.6667dp
+ 600.0000dp
+ 601.3333dp
+ 602.6667dp
+ 604.0000dp
+ 605.3333dp
+ 606.6667dp
+ 608.0000dp
+ 609.3333dp
+ 610.6667dp
+ 612.0000dp
+ 613.3333dp
+ 614.6667dp
+ 616.0000dp
+ 617.3333dp
+ 618.6667dp
+ 620.0000dp
+ 621.3333dp
+ 622.6667dp
+ 624.0000dp
+ 625.3333dp
+ 626.6667dp
+ 628.0000dp
629.3333dp
+ 630.6667dp
+ 632.0000dp
+ 633.3333dp
+ 634.6667dp
+ 636.0000dp
+ 637.3333dp
+ 638.6667dp
+ 640.0000dp
+ 641.3333dp
+ 642.6667dp
+ 644.0000dp
+ 645.3333dp
+ 646.6667dp
+ 648.0000dp
+ 649.3333dp
+ 650.6667dp
+ 652.0000dp
+ 653.3333dp
+ 654.6667dp
+ 656.0000dp
+ 657.3333dp
+ 658.6667dp
+ 660.0000dp
+ 661.3333dp
+ 662.6667dp
+ 664.0000dp
+ 665.3333dp
666.6667dp
800.0000dp
853.3333dp
@@ -415,13 +548,29 @@
30.6667sp
32.0000sp
33.3333sp
+ 34.6667sp
+ 36.0000sp
37.3333sp
+ 38.6667sp
40.0000sp
+ 41.3333sp
42.6667sp
+ 44.0000sp
45.3333sp
+ 46.6667sp
48.0000sp
+ 49.3333sp
50.6667sp
+ 52.0000sp
53.3333sp
+ 54.6667sp
56.0000sp
+ 57.3333sp
+ 58.6667sp
+ 60.0000sp
+ 61.3333sp
+ 62.6667sp
64.0000sp
+ 65.3333sp
+ 66.6667sp
diff --git a/app/src/main/res/values-sw533dp/dimens.xml b/app/src/main/res/values-sw533dp/dimens.xml
index 3c84c90..0bb8f98 100644
--- a/app/src/main/res/values-sw533dp/dimens.xml
+++ b/app/src/main/res/values-sw533dp/dimens.xml
@@ -380,12 +380,145 @@
530.0389dp
531.5194dp
533.0000dp
+ 534.4806dp
+ 535.9611dp
+ 537.4417dp
+ 538.9222dp
540.4028dp
+ 541.8833dp
+ 543.3639dp
+ 544.8444dp
+ 546.3250dp
547.8056dp
+ 549.2861dp
+ 550.7667dp
+ 552.2472dp
+ 553.7278dp
+ 555.2083dp
+ 556.6889dp
+ 558.1694dp
+ 559.6500dp
+ 561.1306dp
+ 562.6111dp
+ 564.0917dp
+ 565.5722dp
+ 567.0528dp
+ 568.5333dp
+ 570.0139dp
+ 571.4944dp
+ 572.9750dp
+ 574.4556dp
+ 575.9361dp
+ 577.4167dp
+ 578.8972dp
+ 580.3778dp
+ 581.8583dp
+ 583.3389dp
+ 584.8194dp
+ 586.3000dp
+ 587.7806dp
+ 589.2611dp
+ 590.7417dp
592.2222dp
+ 593.7028dp
+ 595.1833dp
+ 596.6639dp
+ 598.1444dp
+ 599.6250dp
+ 601.1056dp
+ 602.5861dp
+ 604.0667dp
+ 605.5472dp
607.0278dp
+ 608.5083dp
+ 609.9889dp
+ 611.4694dp
+ 612.9500dp
+ 614.4306dp
+ 615.9111dp
+ 617.3917dp
+ 618.8722dp
+ 620.3528dp
+ 621.8333dp
+ 623.3139dp
624.7944dp
+ 626.2750dp
+ 627.7556dp
+ 629.2361dp
+ 630.7167dp
+ 632.1972dp
+ 633.6778dp
+ 635.1583dp
+ 636.6389dp
+ 638.1194dp
+ 639.6000dp
+ 641.0806dp
+ 642.5611dp
+ 644.0417dp
+ 645.5222dp
+ 647.0028dp
+ 648.4833dp
+ 649.9639dp
+ 651.4444dp
+ 652.9250dp
+ 654.4056dp
+ 655.8861dp
+ 657.3667dp
+ 658.8472dp
+ 660.3278dp
+ 661.8083dp
+ 663.2889dp
+ 664.7694dp
+ 666.2500dp
+ 667.7306dp
+ 669.2111dp
+ 670.6917dp
+ 672.1722dp
+ 673.6528dp
+ 675.1333dp
+ 676.6139dp
+ 678.0944dp
+ 679.5750dp
+ 681.0556dp
+ 682.5361dp
+ 684.0167dp
+ 685.4972dp
+ 686.9778dp
+ 688.4583dp
+ 689.9389dp
+ 691.4194dp
+ 692.9000dp
+ 694.3806dp
+ 695.8611dp
+ 697.3417dp
698.8222dp
+ 700.3028dp
+ 701.7833dp
+ 703.2639dp
+ 704.7444dp
+ 706.2250dp
+ 707.7056dp
+ 709.1861dp
+ 710.6667dp
+ 712.1472dp
+ 713.6278dp
+ 715.1083dp
+ 716.5889dp
+ 718.0694dp
+ 719.5500dp
+ 721.0306dp
+ 722.5111dp
+ 723.9917dp
+ 725.4722dp
+ 726.9528dp
+ 728.4333dp
+ 729.9139dp
+ 731.3944dp
+ 732.8750dp
+ 734.3556dp
+ 735.8361dp
+ 737.3167dp
+ 738.7972dp
740.2778dp
888.3333dp
947.5556dp
@@ -415,13 +548,29 @@
34.0528sp
35.5333sp
37.0139sp
+ 38.4944sp
+ 39.9750sp
41.4556sp
+ 42.9361sp
44.4167sp
+ 45.8972sp
47.3778sp
+ 48.8583sp
50.3389sp
+ 51.8194sp
53.3000sp
+ 54.7806sp
56.2611sp
+ 57.7417sp
59.2222sp
+ 60.7028sp
62.1833sp
+ 63.6639sp
+ 65.1444sp
+ 66.6250sp
+ 68.1056sp
+ 69.5861sp
71.0667sp
+ 72.5472sp
+ 74.0278sp
diff --git a/app/src/main/res/values-sw540dp/dimens.xml b/app/src/main/res/values-sw540dp/dimens.xml
index b5737e8..324eea6 100644
--- a/app/src/main/res/values-sw540dp/dimens.xml
+++ b/app/src/main/res/values-sw540dp/dimens.xml
@@ -380,12 +380,145 @@
537.0000dp
538.5000dp
540.0000dp
+ 541.5000dp
+ 543.0000dp
+ 544.5000dp
+ 546.0000dp
547.5000dp
+ 549.0000dp
+ 550.5000dp
+ 552.0000dp
+ 553.5000dp
555.0000dp
+ 556.5000dp
+ 558.0000dp
+ 559.5000dp
+ 561.0000dp
+ 562.5000dp
+ 564.0000dp
+ 565.5000dp
+ 567.0000dp
+ 568.5000dp
+ 570.0000dp
+ 571.5000dp
+ 573.0000dp
+ 574.5000dp
+ 576.0000dp
+ 577.5000dp
+ 579.0000dp
+ 580.5000dp
+ 582.0000dp
+ 583.5000dp
+ 585.0000dp
+ 586.5000dp
+ 588.0000dp
+ 589.5000dp
+ 591.0000dp
+ 592.5000dp
+ 594.0000dp
+ 595.5000dp
+ 597.0000dp
+ 598.5000dp
600.0000dp
+ 601.5000dp
+ 603.0000dp
+ 604.5000dp
+ 606.0000dp
+ 607.5000dp
+ 609.0000dp
+ 610.5000dp
+ 612.0000dp
+ 613.5000dp
615.0000dp
+ 616.5000dp
+ 618.0000dp
+ 619.5000dp
+ 621.0000dp
+ 622.5000dp
+ 624.0000dp
+ 625.5000dp
+ 627.0000dp
+ 628.5000dp
+ 630.0000dp
+ 631.5000dp
633.0000dp
+ 634.5000dp
+ 636.0000dp
+ 637.5000dp
+ 639.0000dp
+ 640.5000dp
+ 642.0000dp
+ 643.5000dp
+ 645.0000dp
+ 646.5000dp
+ 648.0000dp
+ 649.5000dp
+ 651.0000dp
+ 652.5000dp
+ 654.0000dp
+ 655.5000dp
+ 657.0000dp
+ 658.5000dp
+ 660.0000dp
+ 661.5000dp
+ 663.0000dp
+ 664.5000dp
+ 666.0000dp
+ 667.5000dp
+ 669.0000dp
+ 670.5000dp
+ 672.0000dp
+ 673.5000dp
+ 675.0000dp
+ 676.5000dp
+ 678.0000dp
+ 679.5000dp
+ 681.0000dp
+ 682.5000dp
+ 684.0000dp
+ 685.5000dp
+ 687.0000dp
+ 688.5000dp
+ 690.0000dp
+ 691.5000dp
+ 693.0000dp
+ 694.5000dp
+ 696.0000dp
+ 697.5000dp
+ 699.0000dp
+ 700.5000dp
+ 702.0000dp
+ 703.5000dp
+ 705.0000dp
+ 706.5000dp
708.0000dp
+ 709.5000dp
+ 711.0000dp
+ 712.5000dp
+ 714.0000dp
+ 715.5000dp
+ 717.0000dp
+ 718.5000dp
+ 720.0000dp
+ 721.5000dp
+ 723.0000dp
+ 724.5000dp
+ 726.0000dp
+ 727.5000dp
+ 729.0000dp
+ 730.5000dp
+ 732.0000dp
+ 733.5000dp
+ 735.0000dp
+ 736.5000dp
+ 738.0000dp
+ 739.5000dp
+ 741.0000dp
+ 742.5000dp
+ 744.0000dp
+ 745.5000dp
+ 747.0000dp
+ 748.5000dp
750.0000dp
900.0000dp
960.0000dp
@@ -415,13 +548,29 @@
34.5000sp
36.0000sp
37.5000sp
+ 39.0000sp
+ 40.5000sp
42.0000sp
+ 43.5000sp
45.0000sp
+ 46.5000sp
48.0000sp
+ 49.5000sp
51.0000sp
+ 52.5000sp
54.0000sp
+ 55.5000sp
57.0000sp
+ 58.5000sp
60.0000sp
+ 61.5000sp
63.0000sp
+ 64.5000sp
+ 66.0000sp
+ 67.5000sp
+ 69.0000sp
+ 70.5000sp
72.0000sp
+ 73.5000sp
+ 75.0000sp
diff --git a/app/src/main/res/values-sw592dp/dimens.xml b/app/src/main/res/values-sw592dp/dimens.xml
index ee22ce5..b544a34 100644
--- a/app/src/main/res/values-sw592dp/dimens.xml
+++ b/app/src/main/res/values-sw592dp/dimens.xml
@@ -380,12 +380,145 @@
588.7111dp
590.3556dp
592.0000dp
+ 593.6444dp
+ 595.2889dp
+ 596.9333dp
+ 598.5778dp
600.2222dp
+ 601.8667dp
+ 603.5111dp
+ 605.1556dp
+ 606.8000dp
608.4444dp
+ 610.0889dp
+ 611.7333dp
+ 613.3778dp
+ 615.0222dp
+ 616.6667dp
+ 618.3111dp
+ 619.9556dp
+ 621.6000dp
+ 623.2444dp
+ 624.8889dp
+ 626.5333dp
+ 628.1778dp
+ 629.8222dp
+ 631.4667dp
+ 633.1111dp
+ 634.7556dp
+ 636.4000dp
+ 638.0444dp
+ 639.6889dp
+ 641.3333dp
+ 642.9778dp
+ 644.6222dp
+ 646.2667dp
+ 647.9111dp
+ 649.5556dp
+ 651.2000dp
+ 652.8444dp
+ 654.4889dp
+ 656.1333dp
657.7778dp
+ 659.4222dp
+ 661.0667dp
+ 662.7111dp
+ 664.3556dp
+ 666.0000dp
+ 667.6444dp
+ 669.2889dp
+ 670.9333dp
+ 672.5778dp
674.2222dp
+ 675.8667dp
+ 677.5111dp
+ 679.1556dp
+ 680.8000dp
+ 682.4444dp
+ 684.0889dp
+ 685.7333dp
+ 687.3778dp
+ 689.0222dp
+ 690.6667dp
+ 692.3111dp
693.9556dp
+ 695.6000dp
+ 697.2444dp
+ 698.8889dp
+ 700.5333dp
+ 702.1778dp
+ 703.8222dp
+ 705.4667dp
+ 707.1111dp
+ 708.7556dp
+ 710.4000dp
+ 712.0444dp
+ 713.6889dp
+ 715.3333dp
+ 716.9778dp
+ 718.6222dp
+ 720.2667dp
+ 721.9111dp
+ 723.5556dp
+ 725.2000dp
+ 726.8444dp
+ 728.4889dp
+ 730.1333dp
+ 731.7778dp
+ 733.4222dp
+ 735.0667dp
+ 736.7111dp
+ 738.3556dp
+ 740.0000dp
+ 741.6444dp
+ 743.2889dp
+ 744.9333dp
+ 746.5778dp
+ 748.2222dp
+ 749.8667dp
+ 751.5111dp
+ 753.1556dp
+ 754.8000dp
+ 756.4444dp
+ 758.0889dp
+ 759.7333dp
+ 761.3778dp
+ 763.0222dp
+ 764.6667dp
+ 766.3111dp
+ 767.9556dp
+ 769.6000dp
+ 771.2444dp
+ 772.8889dp
+ 774.5333dp
776.1778dp
+ 777.8222dp
+ 779.4667dp
+ 781.1111dp
+ 782.7556dp
+ 784.4000dp
+ 786.0444dp
+ 787.6889dp
+ 789.3333dp
+ 790.9778dp
+ 792.6222dp
+ 794.2667dp
+ 795.9111dp
+ 797.5556dp
+ 799.2000dp
+ 800.8444dp
+ 802.4889dp
+ 804.1333dp
+ 805.7778dp
+ 807.4222dp
+ 809.0667dp
+ 810.7111dp
+ 812.3556dp
+ 814.0000dp
+ 815.6444dp
+ 817.2889dp
+ 818.9333dp
+ 820.5778dp
822.2222dp
986.6667dp
1052.4444dp
@@ -415,13 +548,29 @@
37.8222sp
39.4667sp
41.1111sp
+ 42.7556sp
+ 44.4000sp
46.0444sp
+ 47.6889sp
49.3333sp
+ 50.9778sp
52.6222sp
+ 54.2667sp
55.9111sp
+ 57.5556sp
59.2000sp
+ 60.8444sp
62.4889sp
+ 64.1333sp
65.7778sp
+ 67.4222sp
69.0667sp
+ 70.7111sp
+ 72.3556sp
+ 74.0000sp
+ 75.6444sp
+ 77.2889sp
78.9333sp
+ 80.5778sp
+ 82.2222sp
diff --git a/app/src/main/res/values-sw600dp/dimens.xml b/app/src/main/res/values-sw600dp/dimens.xml
index 61b98e3..a11c179 100644
--- a/app/src/main/res/values-sw600dp/dimens.xml
+++ b/app/src/main/res/values-sw600dp/dimens.xml
@@ -380,12 +380,145 @@
596.6667dp
598.3333dp
600.0000dp
+ 601.6667dp
+ 603.3333dp
+ 605.0000dp
+ 606.6667dp
608.3333dp
+ 610.0000dp
+ 611.6667dp
+ 613.3333dp
+ 615.0000dp
616.6667dp
+ 618.3333dp
+ 620.0000dp
+ 621.6667dp
+ 623.3333dp
+ 625.0000dp
+ 626.6667dp
+ 628.3333dp
+ 630.0000dp
+ 631.6667dp
+ 633.3333dp
+ 635.0000dp
+ 636.6667dp
+ 638.3333dp
+ 640.0000dp
+ 641.6667dp
+ 643.3333dp
+ 645.0000dp
+ 646.6667dp
+ 648.3333dp
+ 650.0000dp
+ 651.6667dp
+ 653.3333dp
+ 655.0000dp
+ 656.6667dp
+ 658.3333dp
+ 660.0000dp
+ 661.6667dp
+ 663.3333dp
+ 665.0000dp
666.6667dp
+ 668.3333dp
+ 670.0000dp
+ 671.6667dp
+ 673.3333dp
+ 675.0000dp
+ 676.6667dp
+ 678.3333dp
+ 680.0000dp
+ 681.6667dp
683.3333dp
+ 685.0000dp
+ 686.6667dp
+ 688.3333dp
+ 690.0000dp
+ 691.6667dp
+ 693.3333dp
+ 695.0000dp
+ 696.6667dp
+ 698.3333dp
+ 700.0000dp
+ 701.6667dp
703.3333dp
+ 705.0000dp
+ 706.6667dp
+ 708.3333dp
+ 710.0000dp
+ 711.6667dp
+ 713.3333dp
+ 715.0000dp
+ 716.6667dp
+ 718.3333dp
+ 720.0000dp
+ 721.6667dp
+ 723.3333dp
+ 725.0000dp
+ 726.6667dp
+ 728.3333dp
+ 730.0000dp
+ 731.6667dp
+ 733.3333dp
+ 735.0000dp
+ 736.6667dp
+ 738.3333dp
+ 740.0000dp
+ 741.6667dp
+ 743.3333dp
+ 745.0000dp
+ 746.6667dp
+ 748.3333dp
+ 750.0000dp
+ 751.6667dp
+ 753.3333dp
+ 755.0000dp
+ 756.6667dp
+ 758.3333dp
+ 760.0000dp
+ 761.6667dp
+ 763.3333dp
+ 765.0000dp
+ 766.6667dp
+ 768.3333dp
+ 770.0000dp
+ 771.6667dp
+ 773.3333dp
+ 775.0000dp
+ 776.6667dp
+ 778.3333dp
+ 780.0000dp
+ 781.6667dp
+ 783.3333dp
+ 785.0000dp
786.6667dp
+ 788.3333dp
+ 790.0000dp
+ 791.6667dp
+ 793.3333dp
+ 795.0000dp
+ 796.6667dp
+ 798.3333dp
+ 800.0000dp
+ 801.6667dp
+ 803.3333dp
+ 805.0000dp
+ 806.6667dp
+ 808.3333dp
+ 810.0000dp
+ 811.6667dp
+ 813.3333dp
+ 815.0000dp
+ 816.6667dp
+ 818.3333dp
+ 820.0000dp
+ 821.6667dp
+ 823.3333dp
+ 825.0000dp
+ 826.6667dp
+ 828.3333dp
+ 830.0000dp
+ 831.6667dp
833.3333dp
1000.0000dp
1066.6667dp
@@ -415,13 +548,29 @@
38.3333sp
40.0000sp
41.6667sp
+ 43.3333sp
+ 45.0000sp
46.6667sp
+ 48.3333sp
50.0000sp
+ 51.6667sp
53.3333sp
+ 55.0000sp
56.6667sp
+ 58.3333sp
60.0000sp
+ 61.6667sp
63.3333sp
+ 65.0000sp
66.6667sp
+ 68.3333sp
70.0000sp
+ 71.6667sp
+ 73.3333sp
+ 75.0000sp
+ 76.6667sp
+ 78.3333sp
80.0000sp
+ 81.6667sp
+ 83.3333sp
diff --git a/app/src/main/res/values-sw640dp/dimens.xml b/app/src/main/res/values-sw640dp/dimens.xml
index fb79c43..a47d9d6 100644
--- a/app/src/main/res/values-sw640dp/dimens.xml
+++ b/app/src/main/res/values-sw640dp/dimens.xml
@@ -380,12 +380,145 @@
636.4444dp
638.2222dp
640.0000dp
+ 641.7778dp
+ 643.5556dp
+ 645.3333dp
+ 647.1111dp
648.8889dp
+ 650.6667dp
+ 652.4444dp
+ 654.2222dp
+ 656.0000dp
657.7778dp
+ 659.5556dp
+ 661.3333dp
+ 663.1111dp
+ 664.8889dp
+ 666.6667dp
+ 668.4444dp
+ 670.2222dp
+ 672.0000dp
+ 673.7778dp
+ 675.5556dp
+ 677.3333dp
+ 679.1111dp
+ 680.8889dp
+ 682.6667dp
+ 684.4444dp
+ 686.2222dp
+ 688.0000dp
+ 689.7778dp
+ 691.5556dp
+ 693.3333dp
+ 695.1111dp
+ 696.8889dp
+ 698.6667dp
+ 700.4444dp
+ 702.2222dp
+ 704.0000dp
+ 705.7778dp
+ 707.5556dp
+ 709.3333dp
711.1111dp
+ 712.8889dp
+ 714.6667dp
+ 716.4444dp
+ 718.2222dp
+ 720.0000dp
+ 721.7778dp
+ 723.5556dp
+ 725.3333dp
+ 727.1111dp
728.8889dp
+ 730.6667dp
+ 732.4444dp
+ 734.2222dp
+ 736.0000dp
+ 737.7778dp
+ 739.5556dp
+ 741.3333dp
+ 743.1111dp
+ 744.8889dp
+ 746.6667dp
+ 748.4444dp
750.2222dp
+ 752.0000dp
+ 753.7778dp
+ 755.5556dp
+ 757.3333dp
+ 759.1111dp
+ 760.8889dp
+ 762.6667dp
+ 764.4444dp
+ 766.2222dp
+ 768.0000dp
+ 769.7778dp
+ 771.5556dp
+ 773.3333dp
+ 775.1111dp
+ 776.8889dp
+ 778.6667dp
+ 780.4444dp
+ 782.2222dp
+ 784.0000dp
+ 785.7778dp
+ 787.5556dp
+ 789.3333dp
+ 791.1111dp
+ 792.8889dp
+ 794.6667dp
+ 796.4444dp
+ 798.2222dp
+ 800.0000dp
+ 801.7778dp
+ 803.5556dp
+ 805.3333dp
+ 807.1111dp
+ 808.8889dp
+ 810.6667dp
+ 812.4444dp
+ 814.2222dp
+ 816.0000dp
+ 817.7778dp
+ 819.5556dp
+ 821.3333dp
+ 823.1111dp
+ 824.8889dp
+ 826.6667dp
+ 828.4444dp
+ 830.2222dp
+ 832.0000dp
+ 833.7778dp
+ 835.5556dp
+ 837.3333dp
839.1111dp
+ 840.8889dp
+ 842.6667dp
+ 844.4444dp
+ 846.2222dp
+ 848.0000dp
+ 849.7778dp
+ 851.5556dp
+ 853.3333dp
+ 855.1111dp
+ 856.8889dp
+ 858.6667dp
+ 860.4444dp
+ 862.2222dp
+ 864.0000dp
+ 865.7778dp
+ 867.5556dp
+ 869.3333dp
+ 871.1111dp
+ 872.8889dp
+ 874.6667dp
+ 876.4444dp
+ 878.2222dp
+ 880.0000dp
+ 881.7778dp
+ 883.5556dp
+ 885.3333dp
+ 887.1111dp
888.8889dp
1066.6667dp
1137.7778dp
@@ -415,13 +548,29 @@
40.8889sp
42.6667sp
44.4444sp
+ 46.2222sp
+ 48.0000sp
49.7778sp
+ 51.5556sp
53.3333sp
+ 55.1111sp
56.8889sp
+ 58.6667sp
60.4444sp
+ 62.2222sp
64.0000sp
+ 65.7778sp
67.5556sp
+ 69.3333sp
71.1111sp
+ 72.8889sp
74.6667sp
+ 76.4444sp
+ 78.2222sp
+ 80.0000sp
+ 81.7778sp
+ 83.5556sp
85.3333sp
+ 87.1111sp
+ 88.8889sp
diff --git a/app/src/main/res/values-sw662dp/dimens.xml b/app/src/main/res/values-sw662dp/dimens.xml
index c310c6d..d36e683 100644
--- a/app/src/main/res/values-sw662dp/dimens.xml
+++ b/app/src/main/res/values-sw662dp/dimens.xml
@@ -380,12 +380,145 @@
658.3222dp
660.1611dp
662.0000dp
+ 663.8389dp
+ 665.6778dp
+ 667.5167dp
+ 669.3556dp
671.1944dp
+ 673.0333dp
+ 674.8722dp
+ 676.7111dp
+ 678.5500dp
680.3889dp
+ 682.2278dp
+ 684.0667dp
+ 685.9056dp
+ 687.7444dp
+ 689.5833dp
+ 691.4222dp
+ 693.2611dp
+ 695.1000dp
+ 696.9389dp
+ 698.7778dp
+ 700.6167dp
+ 702.4556dp
+ 704.2944dp
+ 706.1333dp
+ 707.9722dp
+ 709.8111dp
+ 711.6500dp
+ 713.4889dp
+ 715.3278dp
+ 717.1667dp
+ 719.0056dp
+ 720.8444dp
+ 722.6833dp
+ 724.5222dp
+ 726.3611dp
+ 728.2000dp
+ 730.0389dp
+ 731.8778dp
+ 733.7167dp
735.5556dp
+ 737.3944dp
+ 739.2333dp
+ 741.0722dp
+ 742.9111dp
+ 744.7500dp
+ 746.5889dp
+ 748.4278dp
+ 750.2667dp
+ 752.1056dp
753.9444dp
+ 755.7833dp
+ 757.6222dp
+ 759.4611dp
+ 761.3000dp
+ 763.1389dp
+ 764.9778dp
+ 766.8167dp
+ 768.6556dp
+ 770.4944dp
+ 772.3333dp
+ 774.1722dp
776.0111dp
+ 777.8500dp
+ 779.6889dp
+ 781.5278dp
+ 783.3667dp
+ 785.2056dp
+ 787.0444dp
+ 788.8833dp
+ 790.7222dp
+ 792.5611dp
+ 794.4000dp
+ 796.2389dp
+ 798.0778dp
+ 799.9167dp
+ 801.7556dp
+ 803.5944dp
+ 805.4333dp
+ 807.2722dp
+ 809.1111dp
+ 810.9500dp
+ 812.7889dp
+ 814.6278dp
+ 816.4667dp
+ 818.3056dp
+ 820.1444dp
+ 821.9833dp
+ 823.8222dp
+ 825.6611dp
+ 827.5000dp
+ 829.3389dp
+ 831.1778dp
+ 833.0167dp
+ 834.8556dp
+ 836.6944dp
+ 838.5333dp
+ 840.3722dp
+ 842.2111dp
+ 844.0500dp
+ 845.8889dp
+ 847.7278dp
+ 849.5667dp
+ 851.4056dp
+ 853.2444dp
+ 855.0833dp
+ 856.9222dp
+ 858.7611dp
+ 860.6000dp
+ 862.4389dp
+ 864.2778dp
+ 866.1167dp
867.9556dp
+ 869.7944dp
+ 871.6333dp
+ 873.4722dp
+ 875.3111dp
+ 877.1500dp
+ 878.9889dp
+ 880.8278dp
+ 882.6667dp
+ 884.5056dp
+ 886.3444dp
+ 888.1833dp
+ 890.0222dp
+ 891.8611dp
+ 893.7000dp
+ 895.5389dp
+ 897.3778dp
+ 899.2167dp
+ 901.0556dp
+ 902.8944dp
+ 904.7333dp
+ 906.5722dp
+ 908.4111dp
+ 910.2500dp
+ 912.0889dp
+ 913.9278dp
+ 915.7667dp
+ 917.6056dp
919.4444dp
1103.3333dp
1176.8889dp
@@ -415,13 +548,29 @@
42.2944sp
44.1333sp
45.9722sp
+ 47.8111sp
+ 49.6500sp
51.4889sp
+ 53.3278sp
55.1667sp
+ 57.0056sp
58.8444sp
+ 60.6833sp
62.5222sp
+ 64.3611sp
66.2000sp
+ 68.0389sp
69.8778sp
+ 71.7167sp
73.5556sp
+ 75.3944sp
77.2333sp
+ 79.0722sp
+ 80.9111sp
+ 82.7500sp
+ 84.5889sp
+ 86.4278sp
88.2667sp
+ 90.1056sp
+ 91.9444sp
diff --git a/app/src/main/res/values-sw720dp/dimens.xml b/app/src/main/res/values-sw720dp/dimens.xml
index ee1910e..ddb023c 100644
--- a/app/src/main/res/values-sw720dp/dimens.xml
+++ b/app/src/main/res/values-sw720dp/dimens.xml
@@ -380,12 +380,145 @@
716.0000dp
718.0000dp
720.0000dp
+ 722.0000dp
+ 724.0000dp
+ 726.0000dp
+ 728.0000dp
730.0000dp
+ 732.0000dp
+ 734.0000dp
+ 736.0000dp
+ 738.0000dp
740.0000dp
+ 742.0000dp
+ 744.0000dp
+ 746.0000dp
+ 748.0000dp
+ 750.0000dp
+ 752.0000dp
+ 754.0000dp
+ 756.0000dp
+ 758.0000dp
+ 760.0000dp
+ 762.0000dp
+ 764.0000dp
+ 766.0000dp
+ 768.0000dp
+ 770.0000dp
+ 772.0000dp
+ 774.0000dp
+ 776.0000dp
+ 778.0000dp
+ 780.0000dp
+ 782.0000dp
+ 784.0000dp
+ 786.0000dp
+ 788.0000dp
+ 790.0000dp
+ 792.0000dp
+ 794.0000dp
+ 796.0000dp
+ 798.0000dp
800.0000dp
+ 802.0000dp
+ 804.0000dp
+ 806.0000dp
+ 808.0000dp
+ 810.0000dp
+ 812.0000dp
+ 814.0000dp
+ 816.0000dp
+ 818.0000dp
820.0000dp
+ 822.0000dp
+ 824.0000dp
+ 826.0000dp
+ 828.0000dp
+ 830.0000dp
+ 832.0000dp
+ 834.0000dp
+ 836.0000dp
+ 838.0000dp
+ 840.0000dp
+ 842.0000dp
844.0000dp
+ 846.0000dp
+ 848.0000dp
+ 850.0000dp
+ 852.0000dp
+ 854.0000dp
+ 856.0000dp
+ 858.0000dp
+ 860.0000dp
+ 862.0000dp
+ 864.0000dp
+ 866.0000dp
+ 868.0000dp
+ 870.0000dp
+ 872.0000dp
+ 874.0000dp
+ 876.0000dp
+ 878.0000dp
+ 880.0000dp
+ 882.0000dp
+ 884.0000dp
+ 886.0000dp
+ 888.0000dp
+ 890.0000dp
+ 892.0000dp
+ 894.0000dp
+ 896.0000dp
+ 898.0000dp
+ 900.0000dp
+ 902.0000dp
+ 904.0000dp
+ 906.0000dp
+ 908.0000dp
+ 910.0000dp
+ 912.0000dp
+ 914.0000dp
+ 916.0000dp
+ 918.0000dp
+ 920.0000dp
+ 922.0000dp
+ 924.0000dp
+ 926.0000dp
+ 928.0000dp
+ 930.0000dp
+ 932.0000dp
+ 934.0000dp
+ 936.0000dp
+ 938.0000dp
+ 940.0000dp
+ 942.0000dp
944.0000dp
+ 946.0000dp
+ 948.0000dp
+ 950.0000dp
+ 952.0000dp
+ 954.0000dp
+ 956.0000dp
+ 958.0000dp
+ 960.0000dp
+ 962.0000dp
+ 964.0000dp
+ 966.0000dp
+ 968.0000dp
+ 970.0000dp
+ 972.0000dp
+ 974.0000dp
+ 976.0000dp
+ 978.0000dp
+ 980.0000dp
+ 982.0000dp
+ 984.0000dp
+ 986.0000dp
+ 988.0000dp
+ 990.0000dp
+ 992.0000dp
+ 994.0000dp
+ 996.0000dp
+ 998.0000dp
1000.0000dp
1200.0000dp
1280.0000dp
@@ -415,13 +548,29 @@
46.0000sp
48.0000sp
50.0000sp
+ 52.0000sp
+ 54.0000sp
56.0000sp
+ 58.0000sp
60.0000sp
+ 62.0000sp
64.0000sp
+ 66.0000sp
68.0000sp
+ 70.0000sp
72.0000sp
+ 74.0000sp
76.0000sp
+ 78.0000sp
80.0000sp
+ 82.0000sp
84.0000sp
+ 86.0000sp
+ 88.0000sp
+ 90.0000sp
+ 92.0000sp
+ 94.0000sp
96.0000sp
+ 98.0000sp
+ 100.0000sp
diff --git a/app/src/main/res/values-sw768dp/dimens.xml b/app/src/main/res/values-sw768dp/dimens.xml
index df01fc7..6e14bb9 100644
--- a/app/src/main/res/values-sw768dp/dimens.xml
+++ b/app/src/main/res/values-sw768dp/dimens.xml
@@ -380,12 +380,145 @@
763.7333dp
765.8667dp
768.0000dp
+ 770.1333dp
+ 772.2667dp
+ 774.4000dp
+ 776.5333dp
778.6667dp
+ 780.8000dp
+ 782.9333dp
+ 785.0667dp
+ 787.2000dp
789.3333dp
+ 791.4667dp
+ 793.6000dp
+ 795.7333dp
+ 797.8667dp
+ 800.0000dp
+ 802.1333dp
+ 804.2667dp
+ 806.4000dp
+ 808.5333dp
+ 810.6667dp
+ 812.8000dp
+ 814.9333dp
+ 817.0667dp
+ 819.2000dp
+ 821.3333dp
+ 823.4667dp
+ 825.6000dp
+ 827.7333dp
+ 829.8667dp
+ 832.0000dp
+ 834.1333dp
+ 836.2667dp
+ 838.4000dp
+ 840.5333dp
+ 842.6667dp
+ 844.8000dp
+ 846.9333dp
+ 849.0667dp
+ 851.2000dp
853.3333dp
+ 855.4667dp
+ 857.6000dp
+ 859.7333dp
+ 861.8667dp
+ 864.0000dp
+ 866.1333dp
+ 868.2667dp
+ 870.4000dp
+ 872.5333dp
874.6667dp
+ 876.8000dp
+ 878.9333dp
+ 881.0667dp
+ 883.2000dp
+ 885.3333dp
+ 887.4667dp
+ 889.6000dp
+ 891.7333dp
+ 893.8667dp
+ 896.0000dp
+ 898.1333dp
900.2667dp
+ 902.4000dp
+ 904.5333dp
+ 906.6667dp
+ 908.8000dp
+ 910.9333dp
+ 913.0667dp
+ 915.2000dp
+ 917.3333dp
+ 919.4667dp
+ 921.6000dp
+ 923.7333dp
+ 925.8667dp
+ 928.0000dp
+ 930.1333dp
+ 932.2667dp
+ 934.4000dp
+ 936.5333dp
+ 938.6667dp
+ 940.8000dp
+ 942.9333dp
+ 945.0667dp
+ 947.2000dp
+ 949.3333dp
+ 951.4667dp
+ 953.6000dp
+ 955.7333dp
+ 957.8667dp
+ 960.0000dp
+ 962.1333dp
+ 964.2667dp
+ 966.4000dp
+ 968.5333dp
+ 970.6667dp
+ 972.8000dp
+ 974.9333dp
+ 977.0667dp
+ 979.2000dp
+ 981.3333dp
+ 983.4667dp
+ 985.6000dp
+ 987.7333dp
+ 989.8667dp
+ 992.0000dp
+ 994.1333dp
+ 996.2667dp
+ 998.4000dp
+ 1000.5333dp
+ 1002.6667dp
+ 1004.8000dp
1006.9333dp
+ 1009.0667dp
+ 1011.2000dp
+ 1013.3333dp
+ 1015.4667dp
+ 1017.6000dp
+ 1019.7333dp
+ 1021.8667dp
+ 1024.0000dp
+ 1026.1333dp
+ 1028.2667dp
+ 1030.4000dp
+ 1032.5333dp
+ 1034.6667dp
+ 1036.8000dp
+ 1038.9333dp
+ 1041.0667dp
+ 1043.2000dp
+ 1045.3333dp
+ 1047.4667dp
+ 1049.6000dp
+ 1051.7333dp
+ 1053.8667dp
+ 1056.0000dp
+ 1058.1333dp
+ 1060.2667dp
+ 1062.4000dp
+ 1064.5333dp
1066.6667dp
1280.0000dp
1365.3333dp
@@ -415,13 +548,29 @@
49.0667sp
51.2000sp
53.3333sp
+ 55.4667sp
+ 57.6000sp
59.7333sp
+ 61.8667sp
64.0000sp
+ 66.1333sp
68.2667sp
+ 70.4000sp
72.5333sp
+ 74.6667sp
76.8000sp
+ 78.9333sp
81.0667sp
+ 83.2000sp
85.3333sp
+ 87.4667sp
89.6000sp
+ 91.7333sp
+ 93.8667sp
+ 96.0000sp
+ 98.1333sp
+ 100.2667sp
102.4000sp
+ 104.5333sp
+ 106.6667sp
diff --git a/app/src/main/res/values-sw800dp/dimens.xml b/app/src/main/res/values-sw800dp/dimens.xml
index 74ef70d..a47636d 100644
--- a/app/src/main/res/values-sw800dp/dimens.xml
+++ b/app/src/main/res/values-sw800dp/dimens.xml
@@ -380,12 +380,145 @@
795.5556dp
797.7778dp
800.0000dp
+ 802.2222dp
+ 804.4444dp
+ 806.6667dp
+ 808.8889dp
811.1111dp
+ 813.3333dp
+ 815.5556dp
+ 817.7778dp
+ 820.0000dp
822.2222dp
+ 824.4444dp
+ 826.6667dp
+ 828.8889dp
+ 831.1111dp
+ 833.3333dp
+ 835.5556dp
+ 837.7778dp
+ 840.0000dp
+ 842.2222dp
+ 844.4444dp
+ 846.6667dp
+ 848.8889dp
+ 851.1111dp
+ 853.3333dp
+ 855.5556dp
+ 857.7778dp
+ 860.0000dp
+ 862.2222dp
+ 864.4444dp
+ 866.6667dp
+ 868.8889dp
+ 871.1111dp
+ 873.3333dp
+ 875.5556dp
+ 877.7778dp
+ 880.0000dp
+ 882.2222dp
+ 884.4444dp
+ 886.6667dp
888.8889dp
+ 891.1111dp
+ 893.3333dp
+ 895.5556dp
+ 897.7778dp
+ 900.0000dp
+ 902.2222dp
+ 904.4444dp
+ 906.6667dp
+ 908.8889dp
911.1111dp
+ 913.3333dp
+ 915.5556dp
+ 917.7778dp
+ 920.0000dp
+ 922.2222dp
+ 924.4444dp
+ 926.6667dp
+ 928.8889dp
+ 931.1111dp
+ 933.3333dp
+ 935.5556dp
937.7778dp
+ 940.0000dp
+ 942.2222dp
+ 944.4444dp
+ 946.6667dp
+ 948.8889dp
+ 951.1111dp
+ 953.3333dp
+ 955.5556dp
+ 957.7778dp
+ 960.0000dp
+ 962.2222dp
+ 964.4444dp
+ 966.6667dp
+ 968.8889dp
+ 971.1111dp
+ 973.3333dp
+ 975.5556dp
+ 977.7778dp
+ 980.0000dp
+ 982.2222dp
+ 984.4444dp
+ 986.6667dp
+ 988.8889dp
+ 991.1111dp
+ 993.3333dp
+ 995.5556dp
+ 997.7778dp
+ 1000.0000dp
+ 1002.2222dp
+ 1004.4444dp
+ 1006.6667dp
+ 1008.8889dp
+ 1011.1111dp
+ 1013.3333dp
+ 1015.5556dp
+ 1017.7778dp
+ 1020.0000dp
+ 1022.2222dp
+ 1024.4444dp
+ 1026.6667dp
+ 1028.8889dp
+ 1031.1111dp
+ 1033.3333dp
+ 1035.5556dp
+ 1037.7778dp
+ 1040.0000dp
+ 1042.2222dp
+ 1044.4444dp
+ 1046.6667dp
1048.8889dp
+ 1051.1111dp
+ 1053.3333dp
+ 1055.5556dp
+ 1057.7778dp
+ 1060.0000dp
+ 1062.2222dp
+ 1064.4444dp
+ 1066.6667dp
+ 1068.8889dp
+ 1071.1111dp
+ 1073.3333dp
+ 1075.5556dp
+ 1077.7778dp
+ 1080.0000dp
+ 1082.2222dp
+ 1084.4444dp
+ 1086.6667dp
+ 1088.8889dp
+ 1091.1111dp
+ 1093.3333dp
+ 1095.5556dp
+ 1097.7778dp
+ 1100.0000dp
+ 1102.2222dp
+ 1104.4444dp
+ 1106.6667dp
+ 1108.8889dp
1111.1111dp
1333.3333dp
1422.2222dp
@@ -415,13 +548,29 @@
51.1111sp
53.3333sp
55.5556sp
+ 57.7778sp
+ 60.0000sp
62.2222sp
+ 64.4444sp
66.6667sp
+ 68.8889sp
71.1111sp
+ 73.3333sp
75.5556sp
+ 77.7778sp
80.0000sp
+ 82.2222sp
84.4444sp
+ 86.6667sp
88.8889sp
+ 91.1111sp
93.3333sp
+ 95.5556sp
+ 97.7778sp
+ 100.0000sp
+ 102.2222sp
+ 104.4444sp
106.6667sp
+ 108.8889sp
+ 111.1111sp
diff --git a/app/src/main/res/values-sw811dp/dimens.xml b/app/src/main/res/values-sw811dp/dimens.xml
index 9afc313..e892ed0 100644
--- a/app/src/main/res/values-sw811dp/dimens.xml
+++ b/app/src/main/res/values-sw811dp/dimens.xml
@@ -380,12 +380,145 @@
806.4944dp
808.7472dp
811.0000dp
+ 813.2528dp
+ 815.5056dp
+ 817.7583dp
+ 820.0111dp
822.2639dp
+ 824.5167dp
+ 826.7694dp
+ 829.0222dp
+ 831.2750dp
833.5278dp
+ 835.7806dp
+ 838.0333dp
+ 840.2861dp
+ 842.5389dp
+ 844.7917dp
+ 847.0444dp
+ 849.2972dp
+ 851.5500dp
+ 853.8028dp
+ 856.0556dp
+ 858.3083dp
+ 860.5611dp
+ 862.8139dp
+ 865.0667dp
+ 867.3194dp
+ 869.5722dp
+ 871.8250dp
+ 874.0778dp
+ 876.3306dp
+ 878.5833dp
+ 880.8361dp
+ 883.0889dp
+ 885.3417dp
+ 887.5944dp
+ 889.8472dp
+ 892.1000dp
+ 894.3528dp
+ 896.6056dp
+ 898.8583dp
901.1111dp
+ 903.3639dp
+ 905.6167dp
+ 907.8694dp
+ 910.1222dp
+ 912.3750dp
+ 914.6278dp
+ 916.8806dp
+ 919.1333dp
+ 921.3861dp
923.6389dp
+ 925.8917dp
+ 928.1444dp
+ 930.3972dp
+ 932.6500dp
+ 934.9028dp
+ 937.1556dp
+ 939.4083dp
+ 941.6611dp
+ 943.9139dp
+ 946.1667dp
+ 948.4194dp
950.6722dp
+ 952.9250dp
+ 955.1778dp
+ 957.4306dp
+ 959.6833dp
+ 961.9361dp
+ 964.1889dp
+ 966.4417dp
+ 968.6944dp
+ 970.9472dp
+ 973.2000dp
+ 975.4528dp
+ 977.7056dp
+ 979.9583dp
+ 982.2111dp
+ 984.4639dp
+ 986.7167dp
+ 988.9694dp
+ 991.2222dp
+ 993.4750dp
+ 995.7278dp
+ 997.9806dp
+ 1000.2333dp
+ 1002.4861dp
+ 1004.7389dp
+ 1006.9917dp
+ 1009.2444dp
+ 1011.4972dp
+ 1013.7500dp
+ 1016.0028dp
+ 1018.2556dp
+ 1020.5083dp
+ 1022.7611dp
+ 1025.0139dp
+ 1027.2667dp
+ 1029.5194dp
+ 1031.7722dp
+ 1034.0250dp
+ 1036.2778dp
+ 1038.5306dp
+ 1040.7833dp
+ 1043.0361dp
+ 1045.2889dp
+ 1047.5417dp
+ 1049.7944dp
+ 1052.0472dp
+ 1054.3000dp
+ 1056.5528dp
+ 1058.8056dp
+ 1061.0583dp
1063.3111dp
+ 1065.5639dp
+ 1067.8167dp
+ 1070.0694dp
+ 1072.3222dp
+ 1074.5750dp
+ 1076.8278dp
+ 1079.0806dp
+ 1081.3333dp
+ 1083.5861dp
+ 1085.8389dp
+ 1088.0917dp
+ 1090.3444dp
+ 1092.5972dp
+ 1094.8500dp
+ 1097.1028dp
+ 1099.3556dp
+ 1101.6083dp
+ 1103.8611dp
+ 1106.1139dp
+ 1108.3667dp
+ 1110.6194dp
+ 1112.8722dp
+ 1115.1250dp
+ 1117.3778dp
+ 1119.6306dp
+ 1121.8833dp
+ 1124.1361dp
1126.3889dp
1351.6667dp
1441.7778dp
@@ -415,13 +548,29 @@
51.8139sp
54.0667sp
56.3194sp
+ 58.5722sp
+ 60.8250sp
63.0778sp
+ 65.3306sp
67.5833sp
+ 69.8361sp
72.0889sp
+ 74.3417sp
76.5944sp
+ 78.8472sp
81.1000sp
+ 83.3528sp
85.6056sp
+ 87.8583sp
90.1111sp
+ 92.3639sp
94.6167sp
+ 96.8694sp
+ 99.1222sp
+ 101.3750sp
+ 103.6278sp
+ 105.8806sp
108.1333sp
+ 110.3861sp
+ 112.6389sp
diff --git a/app/src/main/res/values-sw820dp/dimens.xml b/app/src/main/res/values-sw820dp/dimens.xml
index 226311a..c0b784e 100644
--- a/app/src/main/res/values-sw820dp/dimens.xml
+++ b/app/src/main/res/values-sw820dp/dimens.xml
@@ -380,12 +380,145 @@
815.4444dp
817.7222dp
820.0000dp
+ 822.2778dp
+ 824.5556dp
+ 826.8333dp
+ 829.1111dp
831.3889dp
+ 833.6667dp
+ 835.9444dp
+ 838.2222dp
+ 840.5000dp
842.7778dp
+ 845.0556dp
+ 847.3333dp
+ 849.6111dp
+ 851.8889dp
+ 854.1667dp
+ 856.4444dp
+ 858.7222dp
+ 861.0000dp
+ 863.2778dp
+ 865.5556dp
+ 867.8333dp
+ 870.1111dp
+ 872.3889dp
+ 874.6667dp
+ 876.9444dp
+ 879.2222dp
+ 881.5000dp
+ 883.7778dp
+ 886.0556dp
+ 888.3333dp
+ 890.6111dp
+ 892.8889dp
+ 895.1667dp
+ 897.4444dp
+ 899.7222dp
+ 902.0000dp
+ 904.2778dp
+ 906.5556dp
+ 908.8333dp
911.1111dp
+ 913.3889dp
+ 915.6667dp
+ 917.9444dp
+ 920.2222dp
+ 922.5000dp
+ 924.7778dp
+ 927.0556dp
+ 929.3333dp
+ 931.6111dp
933.8889dp
+ 936.1667dp
+ 938.4444dp
+ 940.7222dp
+ 943.0000dp
+ 945.2778dp
+ 947.5556dp
+ 949.8333dp
+ 952.1111dp
+ 954.3889dp
+ 956.6667dp
+ 958.9444dp
961.2222dp
+ 963.5000dp
+ 965.7778dp
+ 968.0556dp
+ 970.3333dp
+ 972.6111dp
+ 974.8889dp
+ 977.1667dp
+ 979.4444dp
+ 981.7222dp
+ 984.0000dp
+ 986.2778dp
+ 988.5556dp
+ 990.8333dp
+ 993.1111dp
+ 995.3889dp
+ 997.6667dp
+ 999.9444dp
+ 1002.2222dp
+ 1004.5000dp
+ 1006.7778dp
+ 1009.0556dp
+ 1011.3333dp
+ 1013.6111dp
+ 1015.8889dp
+ 1018.1667dp
+ 1020.4444dp
+ 1022.7222dp
+ 1025.0000dp
+ 1027.2778dp
+ 1029.5556dp
+ 1031.8333dp
+ 1034.1111dp
+ 1036.3889dp
+ 1038.6667dp
+ 1040.9444dp
+ 1043.2222dp
+ 1045.5000dp
+ 1047.7778dp
+ 1050.0556dp
+ 1052.3333dp
+ 1054.6111dp
+ 1056.8889dp
+ 1059.1667dp
+ 1061.4444dp
+ 1063.7222dp
+ 1066.0000dp
+ 1068.2778dp
+ 1070.5556dp
+ 1072.8333dp
1075.1111dp
+ 1077.3889dp
+ 1079.6667dp
+ 1081.9444dp
+ 1084.2222dp
+ 1086.5000dp
+ 1088.7778dp
+ 1091.0556dp
+ 1093.3333dp
+ 1095.6111dp
+ 1097.8889dp
+ 1100.1667dp
+ 1102.4444dp
+ 1104.7222dp
+ 1107.0000dp
+ 1109.2778dp
+ 1111.5556dp
+ 1113.8333dp
+ 1116.1111dp
+ 1118.3889dp
+ 1120.6667dp
+ 1122.9444dp
+ 1125.2222dp
+ 1127.5000dp
+ 1129.7778dp
+ 1132.0556dp
+ 1134.3333dp
+ 1136.6111dp
1138.8889dp
1366.6667dp
1457.7778dp
@@ -415,13 +548,29 @@
52.3889sp
54.6667sp
56.9444sp
+ 59.2222sp
+ 61.5000sp
63.7778sp
+ 66.0556sp
68.3333sp
+ 70.6111sp
72.8889sp
+ 75.1667sp
77.4444sp
+ 79.7222sp
82.0000sp
+ 84.2778sp
86.5556sp
+ 88.8333sp
91.1111sp
+ 93.3889sp
95.6667sp
+ 97.9444sp
+ 100.2222sp
+ 102.5000sp
+ 104.7778sp
+ 107.0556sp
109.3333sp
+ 111.6111sp
+ 113.8889sp
diff --git a/app/src/main/res/values-sw960dp/dimens.xml b/app/src/main/res/values-sw960dp/dimens.xml
index 9620cd6..0169b6a 100644
--- a/app/src/main/res/values-sw960dp/dimens.xml
+++ b/app/src/main/res/values-sw960dp/dimens.xml
@@ -380,12 +380,145 @@
954.6667dp
957.3333dp
960.0000dp
+ 962.6667dp
+ 965.3333dp
+ 968.0000dp
+ 970.6667dp
973.3333dp
+ 976.0000dp
+ 978.6667dp
+ 981.3333dp
+ 984.0000dp
986.6667dp
+ 989.3333dp
+ 992.0000dp
+ 994.6667dp
+ 997.3333dp
+ 1000.0000dp
+ 1002.6667dp
+ 1005.3333dp
+ 1008.0000dp
+ 1010.6667dp
+ 1013.3333dp
+ 1016.0000dp
+ 1018.6667dp
+ 1021.3333dp
+ 1024.0000dp
+ 1026.6667dp
+ 1029.3333dp
+ 1032.0000dp
+ 1034.6667dp
+ 1037.3333dp
+ 1040.0000dp
+ 1042.6667dp
+ 1045.3333dp
+ 1048.0000dp
+ 1050.6667dp
+ 1053.3333dp
+ 1056.0000dp
+ 1058.6667dp
+ 1061.3333dp
+ 1064.0000dp
1066.6667dp
+ 1069.3333dp
+ 1072.0000dp
+ 1074.6667dp
+ 1077.3333dp
+ 1080.0000dp
+ 1082.6667dp
+ 1085.3333dp
+ 1088.0000dp
+ 1090.6667dp
1093.3333dp
+ 1096.0000dp
+ 1098.6667dp
+ 1101.3333dp
+ 1104.0000dp
+ 1106.6667dp
+ 1109.3333dp
+ 1112.0000dp
+ 1114.6667dp
+ 1117.3333dp
+ 1120.0000dp
+ 1122.6667dp
1125.3333dp
+ 1128.0000dp
+ 1130.6667dp
+ 1133.3333dp
+ 1136.0000dp
+ 1138.6667dp
+ 1141.3333dp
+ 1144.0000dp
+ 1146.6667dp
+ 1149.3333dp
+ 1152.0000dp
+ 1154.6667dp
+ 1157.3333dp
+ 1160.0000dp
+ 1162.6667dp
+ 1165.3333dp
+ 1168.0000dp
+ 1170.6667dp
+ 1173.3333dp
+ 1176.0000dp
+ 1178.6667dp
+ 1181.3333dp
+ 1184.0000dp
+ 1186.6667dp
+ 1189.3333dp
+ 1192.0000dp
+ 1194.6667dp
+ 1197.3333dp
+ 1200.0000dp
+ 1202.6667dp
+ 1205.3333dp
+ 1208.0000dp
+ 1210.6667dp
+ 1213.3333dp
+ 1216.0000dp
+ 1218.6667dp
+ 1221.3333dp
+ 1224.0000dp
+ 1226.6667dp
+ 1229.3333dp
+ 1232.0000dp
+ 1234.6667dp
+ 1237.3333dp
+ 1240.0000dp
+ 1242.6667dp
+ 1245.3333dp
+ 1248.0000dp
+ 1250.6667dp
+ 1253.3333dp
+ 1256.0000dp
1258.6667dp
+ 1261.3333dp
+ 1264.0000dp
+ 1266.6667dp
+ 1269.3333dp
+ 1272.0000dp
+ 1274.6667dp
+ 1277.3333dp
+ 1280.0000dp
+ 1282.6667dp
+ 1285.3333dp
+ 1288.0000dp
+ 1290.6667dp
+ 1293.3333dp
+ 1296.0000dp
+ 1298.6667dp
+ 1301.3333dp
+ 1304.0000dp
+ 1306.6667dp
+ 1309.3333dp
+ 1312.0000dp
+ 1314.6667dp
+ 1317.3333dp
+ 1320.0000dp
+ 1322.6667dp
+ 1325.3333dp
+ 1328.0000dp
+ 1330.6667dp
1333.3333dp
1600.0000dp
1706.6667dp
@@ -415,13 +548,29 @@
61.3333sp
64.0000sp
66.6667sp
+ 69.3333sp
+ 72.0000sp
74.6667sp
+ 77.3333sp
80.0000sp
+ 82.6667sp
85.3333sp
+ 88.0000sp
90.6667sp
+ 93.3333sp
96.0000sp
+ 98.6667sp
101.3333sp
+ 104.0000sp
106.6667sp
+ 109.3333sp
112.0000sp
+ 114.6667sp
+ 117.3333sp
+ 120.0000sp
+ 122.6667sp
+ 125.3333sp
128.0000sp
+ 130.6667sp
+ 133.3333sp
diff --git a/app/src/main/res/values-sw961dp/dimens.xml b/app/src/main/res/values-sw961dp/dimens.xml
index 8edc9ea..7fb69d7 100644
--- a/app/src/main/res/values-sw961dp/dimens.xml
+++ b/app/src/main/res/values-sw961dp/dimens.xml
@@ -380,12 +380,145 @@
955.6611dp
958.3306dp
961.0000dp
+ 963.6694dp
+ 966.3389dp
+ 969.0083dp
+ 971.6778dp
974.3472dp
+ 977.0167dp
+ 979.6861dp
+ 982.3556dp
+ 985.0250dp
987.6944dp
+ 990.3639dp
+ 993.0333dp
+ 995.7028dp
+ 998.3722dp
+ 1001.0417dp
+ 1003.7111dp
+ 1006.3806dp
+ 1009.0500dp
+ 1011.7194dp
+ 1014.3889dp
+ 1017.0583dp
+ 1019.7278dp
+ 1022.3972dp
+ 1025.0667dp
+ 1027.7361dp
+ 1030.4056dp
+ 1033.0750dp
+ 1035.7444dp
+ 1038.4139dp
+ 1041.0833dp
+ 1043.7528dp
+ 1046.4222dp
+ 1049.0917dp
+ 1051.7611dp
+ 1054.4306dp
+ 1057.1000dp
+ 1059.7694dp
+ 1062.4389dp
+ 1065.1083dp
1067.7778dp
+ 1070.4472dp
+ 1073.1167dp
+ 1075.7861dp
+ 1078.4556dp
+ 1081.1250dp
+ 1083.7944dp
+ 1086.4639dp
+ 1089.1333dp
+ 1091.8028dp
1094.4722dp
+ 1097.1417dp
+ 1099.8111dp
+ 1102.4806dp
+ 1105.1500dp
+ 1107.8194dp
+ 1110.4889dp
+ 1113.1583dp
+ 1115.8278dp
+ 1118.4972dp
+ 1121.1667dp
+ 1123.8361dp
1126.5056dp
+ 1129.1750dp
+ 1131.8444dp
+ 1134.5139dp
+ 1137.1833dp
+ 1139.8528dp
+ 1142.5222dp
+ 1145.1917dp
+ 1147.8611dp
+ 1150.5306dp
+ 1153.2000dp
+ 1155.8694dp
+ 1158.5389dp
+ 1161.2083dp
+ 1163.8778dp
+ 1166.5472dp
+ 1169.2167dp
+ 1171.8861dp
+ 1174.5556dp
+ 1177.2250dp
+ 1179.8944dp
+ 1182.5639dp
+ 1185.2333dp
+ 1187.9028dp
+ 1190.5722dp
+ 1193.2417dp
+ 1195.9111dp
+ 1198.5806dp
+ 1201.2500dp
+ 1203.9194dp
+ 1206.5889dp
+ 1209.2583dp
+ 1211.9278dp
+ 1214.5972dp
+ 1217.2667dp
+ 1219.9361dp
+ 1222.6056dp
+ 1225.2750dp
+ 1227.9444dp
+ 1230.6139dp
+ 1233.2833dp
+ 1235.9528dp
+ 1238.6222dp
+ 1241.2917dp
+ 1243.9611dp
+ 1246.6306dp
+ 1249.3000dp
+ 1251.9694dp
+ 1254.6389dp
+ 1257.3083dp
1259.9778dp
+ 1262.6472dp
+ 1265.3167dp
+ 1267.9861dp
+ 1270.6556dp
+ 1273.3250dp
+ 1275.9944dp
+ 1278.6639dp
+ 1281.3333dp
+ 1284.0028dp
+ 1286.6722dp
+ 1289.3417dp
+ 1292.0111dp
+ 1294.6806dp
+ 1297.3500dp
+ 1300.0194dp
+ 1302.6889dp
+ 1305.3583dp
+ 1308.0278dp
+ 1310.6972dp
+ 1313.3667dp
+ 1316.0361dp
+ 1318.7056dp
+ 1321.3750dp
+ 1324.0444dp
+ 1326.7139dp
+ 1329.3833dp
+ 1332.0528dp
1334.7222dp
1601.6667dp
1708.4444dp
@@ -415,13 +548,29 @@
61.3972sp
64.0667sp
66.7361sp
+ 69.4056sp
+ 72.0750sp
74.7444sp
+ 77.4139sp
80.0833sp
+ 82.7528sp
85.4222sp
+ 88.0917sp
90.7611sp
+ 93.4306sp
96.1000sp
+ 98.7694sp
101.4389sp
+ 104.1083sp
106.7778sp
+ 109.4472sp
112.1167sp
+ 114.7861sp
+ 117.4556sp
+ 120.1250sp
+ 122.7944sp
+ 125.4639sp
128.1333sp
+ 130.8028sp
+ 133.4722sp
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml
index 28d84e3..1751024 100644
--- a/app/src/main/res/values/colors.xml
+++ b/app/src/main/res/values/colors.xml
@@ -30,4 +30,5 @@
#f4bea3
#858585
+ #1F2133
diff --git a/app/src/main/res/values/dimens.xml b/app/src/main/res/values/dimens.xml
index b6eda4f..853f30c 100644
--- a/app/src/main/res/values/dimens.xml
+++ b/app/src/main/res/values/dimens.xml
@@ -384,12 +384,145 @@
358dp
359dp
360dp
+ 361dp
+ 362dp
+ 363dp
+ 364dp
365dp
+ 366dp
+ 367dp
+ 368dp
+ 369dp
370dp
+ 371dp
+ 372dp
+ 373dp
+ 374dp
+ 375dp
+ 376dp
+ 377dp
+ 378dp
+ 379dp
+ 380dp
+ 381dp
+ 382dp
+ 383dp
+ 384dp
+ 385dp
+ 386dp
+ 387dp
+ 388dp
+ 389dp
+ 390dp
+ 391dp
+ 392dp
+ 393dp
+ 394dp
+ 395dp
+ 396dp
+ 397dp
+ 398dp
+ 399dp
400dp
+ 401dp
+ 402dp
+ 403dp
+ 404dp
+ 405dp
+ 406dp
+ 407dp
+ 408dp
+ 409dp
410dp
+ 411dp
+ 412dp
+ 413dp
+ 414dp
+ 415dp
+ 416dp
+ 417dp
+ 418dp
+ 419dp
+ 420dp
+ 421dp
422dp
+ 423dp
+ 424dp
+ 425dp
+ 426dp
+ 427dp
+ 428dp
+ 429dp
+ 430dp
+ 431dp
+ 432dp
+ 433dp
+ 434dp
+ 435dp
+ 436dp
+ 437dp
+ 438dp
+ 439dp
+ 440dp
+ 441dp
+ 442dp
+ 443dp
+ 444dp
+ 445dp
+ 446dp
+ 447dp
+ 448dp
+ 449dp
+ 450dp
+ 451dp
+ 452dp
+ 453dp
+ 454dp
+ 455dp
+ 456dp
+ 457dp
+ 458dp
+ 459dp
+ 460dp
+ 461dp
+ 462dp
+ 463dp
+ 464dp
+ 465dp
+ 466dp
+ 467dp
+ 468dp
+ 469dp
+ 470dp
+ 471dp
472dp
+ 473dp
+ 474dp
+ 475dp
+ 476dp
+ 477dp
+ 478dp
+ 479dp
+ 480dp
+ 481dp
+ 482dp
+ 483dp
+ 484dp
+ 485dp
+ 486dp
+ 487dp
+ 488dp
+ 489dp
+ 490dp
+ 491dp
+ 492dp
+ 493dp
+ 494dp
+ 495dp
+ 496dp
+ 497dp
+ 498dp
+ 499dp
500dp
600dp
640dp
@@ -421,14 +554,29 @@
23sp
24sp
25sp
+ 26sp
+ 27sp
28sp
+ 29sp
30sp
+ 31sp
32sp
+ 33sp
34sp
+ 35sp
36sp
+ 37sp
38sp
+ 39sp
40sp
+ 41sp
42sp
+ 43sp
+ 44sp
+ 45sp
+ 46sp
+ 47sp
48sp
-
+ 49sp
+ 50sp
diff --git a/niceimageview/build.gradle b/niceimageview/build.gradle
index 22734c5..c97f41b 100644
--- a/niceimageview/build.gradle
+++ b/niceimageview/build.gradle
@@ -11,10 +11,6 @@ android {
}
buildTypes {
- MTKAndroid12Release {}
- MTKAndroid12Debug {}
- zhanRuiRelease {}
- zhanRuiDebug {}
debug {}
release {}
}