infoHashMap = new HashMap<>();
- for (ApplicationInfo applicationInfo : applicationInfos) {
- infoHashMap.put(applicationInfo.packageName, applicationInfo);
- }
- for (int i = 0; i < defaultSort.size(); i++) {
- ApplicationInfo info = infoHashMap.get(defaultSort.get(i));
- if (info != null) {
- desktopIcons.add(DesktopIcon.creatDesktopIcon(context, info, i));
- infoHashMap.remove(defaultSort.get(i));
+ for (ResolveInfo applicationInfo : resolveInfos) {
+ if (!excludeClassName.contains(applicationInfo.activityInfo.name)) {
+ desktopIcons.add(DesktopIcon.creatDesktopIcon(context, applicationInfo));
}
}
-
- for (ApplicationInfo applicationInfo : infoHashMap.values()) {
- desktopIcons.add(DesktopIcon.creatDesktopIcon(context, applicationInfo));
- }
return desktopIcons;
}
+ public static boolean isSystemApp(Context context, String pkg) {
+ PackageManager pm = context.getPackageManager();
+ ApplicationInfo applicationInfo = null;
+ try {
+ applicationInfo = pm.getApplicationInfo(pkg, 0);
+ } catch (PackageManager.NameNotFoundException e) {
+ e.printStackTrace();
+ }
+ if (applicationInfo == null) return false;
+ return (applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) > 0;
+ }
+
private static boolean appIsDisable(Context context, String pkg) {
PackageManager pm = context.getPackageManager();
return pm.getApplicationEnabledSetting(pkg) == PackageManager.COMPONENT_ENABLED_STATE_DISABLED;
@@ -508,4 +534,4 @@ public class ApkUtils {
return uid / PER_USER_RANGE;
}
- }
+}
diff --git a/app/src/main/java/com/uiuios/aios/utils/BitmapUtils.java b/app/src/main/java/com/uiuios/aios/utils/BitmapUtils.java
index 4a0cc9b..d18acb9 100644
--- a/app/src/main/java/com/uiuios/aios/utils/BitmapUtils.java
+++ b/app/src/main/java/com/uiuios/aios/utils/BitmapUtils.java
@@ -61,9 +61,9 @@ public class BitmapUtils {
Canvas canvas = new Canvas(bitmap);
drawable.setBounds(0, 0, canvas.getWidth(), canvas.getHeight());
drawable.draw(canvas);
- return bitmap;
+ return Utils.getRoundedBitmap(bitmap, context);
} else {
- return ((BitmapDrawable) drawable).getBitmap();
+ return Utils.getRoundedBitmap(((BitmapDrawable) drawable).getBitmap(), context);
}
} catch (Exception e) {
return null;
diff --git a/app/src/main/java/com/uiuios/aios/utils/GlideLoadUtils.java b/app/src/main/java/com/uiuios/aios/utils/GlideLoadUtils.java
index bb5a06b..513abbd 100644
--- a/app/src/main/java/com/uiuios/aios/utils/GlideLoadUtils.java
+++ b/app/src/main/java/com/uiuios/aios/utils/GlideLoadUtils.java
@@ -72,7 +72,7 @@ public class GlideLoadUtils {
if (fragment != null && fragment.getActivity() != null) {
Glide.with(fragment).load(url).centerCrop().error(default_image).into(imageView);
} else {
- Log.i(TAG, "Picture loading failed,android.app.Fragment is null");
+ Log.i(TAG, "Picture loading failed,android.app.SecondFragment is null");
}
}
}
diff --git a/app/src/main/java/com/uiuios/aios/utils/Utils.java b/app/src/main/java/com/uiuios/aios/utils/Utils.java
index e1c08df..36a1cb4 100644
--- a/app/src/main/java/com/uiuios/aios/utils/Utils.java
+++ b/app/src/main/java/com/uiuios/aios/utils/Utils.java
@@ -9,6 +9,12 @@ import android.content.Intent;
import android.content.IntentFilter;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
+import android.graphics.Bitmap;
+import android.graphics.BitmapFactory;
+import android.graphics.Canvas;
+import android.graphics.Paint;
+import android.graphics.PorterDuff;
+import android.graphics.PorterDuffXfermode;
import android.os.BatteryManager;
import android.os.Build;
import android.os.Environment;
@@ -20,6 +26,7 @@ import android.util.Log;
import androidx.core.content.ContextCompat;
import com.uiuios.aios.BuildConfig;
+import com.uiuios.aios.R;
import java.io.File;
import java.lang.reflect.Method;
@@ -203,5 +210,53 @@ public class Utils {
}
}
+ public static Bitmap getRoundedBitmap(Bitmap mBitmap, Context context) {
+ Bitmap bgBitmap = Bitmap.createBitmap(mBitmap.getWidth(), mBitmap.getHeight(), Bitmap.Config.ARGB_8888);
+
+ Bitmap mask = BitmapFactory.decodeResource(context.getResources(), R.drawable.mask);
+ int width = mask.getWidth();
+ int height = mask.getHeight();
+ Bitmap bitmapScale = Bitmap.createScaledBitmap(mBitmap, width, height, true);
+ bitmapScale.setDensity(context.getResources().getDisplayMetrics().densityDpi);
+// Palette p = Palette.from(mBitmap).generate();
+// Palette.Swatch vibrant = p.getVibrantSwatch();//有活力的
+// int color = vibrant.getRgb(); //样本中的像素数量
+
+ Bitmap result = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
+ Canvas canvas = new Canvas();
+ Paint paint = new Paint();
+
+ canvas.setBitmap(result);
+// canvas.drawColor(color);
+ canvas.drawBitmap(mask, 0, 0, paint);
+// paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN));
+ canvas.drawBitmap(bitmapScale, 0, 0, paint);
+// return result;
+
+ Bitmap result2 = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
+ Canvas canvas2 = new Canvas();
+ Paint paint2 = new Paint();
+ canvas2.setBitmap(result2);
+ canvas2.drawBitmap(mask, 0, 0, paint2);
+ paint2.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN));
+ canvas2.drawBitmap(result, 0, 0, paint2);
+ return result2;
+
+
+// Canvas mCanvas = new Canvas();
+// mCanvas.setBitmap(bgBitmap);
+// Paint mPaint = new Paint();
+// RectF mRectM = new RectF(scaleM, scaleM, mBitmap.getWidth() - scaleM, mBitmap.getHeight() - scaleM); //设置剪裁圆角的区域
+// Rect mRect = new Rect(0, 0, mBitmap.getWidth(), mBitmap.getHeight());
+// RectF mRectF = mRectM;
+//
+// float roundPx = 15; //圆角半径
+// mPaint.setAntiAlias(true);
+// //Log.d("wy"+TAG,"mBitmap.getWidth()="+mBitmap.getWidth()+", mBitmap.getHeight()="+mBitmap.getHeight());
+// mCanvas.drawRoundRect(mRectF, roundPx, roundPx, mPaint);
+// mPaint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN));
+// mCanvas.drawBitmap(mBitmap, mRect, mRect, mPaint);
+// return bgBitmap;
+ }
}
diff --git a/app/src/main/java/com/uiuios/aios/view/CenterImageSpan.java b/app/src/main/java/com/uiuios/aios/view/CenterImageSpan.java
new file mode 100644
index 0000000..9fb8d89
--- /dev/null
+++ b/app/src/main/java/com/uiuios/aios/view/CenterImageSpan.java
@@ -0,0 +1,25 @@
+package com.uiuios.aios.view;
+
+import android.graphics.Canvas;
+import android.graphics.Paint;
+import android.graphics.drawable.Drawable;
+import android.text.style.ImageSpan;
+
+import androidx.annotation.NonNull;
+
+public class CenterImageSpan extends ImageSpan {
+ public CenterImageSpan(Drawable drawable) {
+ super(drawable);
+ }
+
+ @Override
+ public void draw(@NonNull Canvas canvas, CharSequence text, int start, int end, float x, int top, int y, int bottom, @NonNull Paint paint) {
+ Drawable b = getDrawable();
+ Paint.FontMetricsInt fm = paint.getFontMetricsInt();
+ int transY = (y + fm.descent + y + fm.ascent) / 2 - b.getBounds().bottom / 2;
+ canvas.save();
+ canvas.translate(x, transY);
+ b.draw(canvas);
+ canvas.restore();
+ }
+}
diff --git a/app/src/main/java/com/uiuios/aios/view/GridSpaceItemDecoration.java b/app/src/main/java/com/uiuios/aios/view/GridSpaceItemDecoration.java
new file mode 100644
index 0000000..d156cde
--- /dev/null
+++ b/app/src/main/java/com/uiuios/aios/view/GridSpaceItemDecoration.java
@@ -0,0 +1,59 @@
+package com.uiuios.aios.view;
+
+import android.graphics.Rect;
+import android.util.Log;
+import android.view.View;
+
+import androidx.annotation.NonNull;
+import androidx.recyclerview.widget.RecyclerView;
+
+/**
+ * 描述 : RecyclerView GridLayoutManager 等间距。
+ *
+ * 等间距需满足两个条件:
+ * 1.各个模块的大小相等,即 各列的left+right 值相等;
+ * 2.各列的间距相等,即 前列的right + 后列的left = 列间距;
+ *
+ * 在{@link #getItemOffsets(Rect, View, RecyclerView, RecyclerView.State)} 中针对 outRect 的left 和right 满足这两个条件即可
+ *
+ * 作者 : shiguotao
+ * 版本 : V1
+ * 创建时间 : 2020/3/19 4:54 PM
+ */
+public class GridSpaceItemDecoration extends RecyclerView.ItemDecoration {
+
+ private final String TAG = "GridSpaceItemDecoration";
+
+ private int mSpanCount;//横条目数量
+ private int mRowSpacing;//行间距
+ private int mColumnSpacing;// 列间距
+
+ /**
+ * @param spanCount 列数
+ * @param rowSpacing 行间距
+ * @param columnSpacing 列间距
+ */
+ public GridSpaceItemDecoration(int spanCount, int rowSpacing, int columnSpacing) {
+ this.mSpanCount = spanCount;
+ this.mRowSpacing = rowSpacing;
+ this.mColumnSpacing = columnSpacing;
+ }
+
+ @Override
+ public void getItemOffsets(@NonNull Rect outRect, @NonNull View view, @NonNull RecyclerView parent, @NonNull RecyclerView.State state) {
+ int position = parent.getChildAdapterPosition(view); // 获取view 在adapter中的位置。
+ int column = position % mSpanCount; // view 所在的列
+
+ outRect.left = column * mColumnSpacing / mSpanCount; // column * (列间距 * (1f / 列数))
+ outRect.right = mColumnSpacing - (column + 1) * mColumnSpacing / mSpanCount; // 列间距 - (column + 1) * (列间距 * (1f /列数))
+
+ Log.e(TAG, "position:" + position
+ + " columnIndex: " + column
+ + " left,right ->" + outRect.left + "," + outRect.right);
+
+ // 如果position > 行数,说明不是在第一行,则不指定行高,其他行的上间距为 top=mRowSpacing
+ if (position >= mSpanCount) {
+ outRect.top = mRowSpacing; // item top
+ }
+ }
+}
diff --git a/app/src/main/res/drawable-hdpi/battery_icon.png b/app/src/main/res/drawable-hdpi/battery_icon.png
new file mode 100644
index 0000000..c54a198
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/battery_icon.png differ
diff --git a/app/src/main/res/drawable-hdpi/certified.png b/app/src/main/res/drawable-hdpi/certified.png
new file mode 100644
index 0000000..7885377
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/certified.png 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
index 03443fa..9b06c7c 100644
Binary files a/app/src/main/res/drawable-hdpi/com_android_appstore.png and b/app/src/main/res/drawable-hdpi/com_android_appstore.png 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
index 405eb59..c569613 100644
Binary files a/app/src/main/res/drawable-hdpi/com_android_browser.png and b/app/src/main/res/drawable-hdpi/com_android_browser.png 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
index 9bb3287..31402e7 100644
Binary files a/app/src/main/res/drawable-hdpi/com_android_calculator2.png and b/app/src/main/res/drawable-hdpi/com_android_calculator2.png 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
index e70be32..0065e28 100644
Binary files a/app/src/main/res/drawable-hdpi/com_android_calendar.png and b/app/src/main/res/drawable-hdpi/com_android_calendar.png 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
index 85ad259..bbeb62c 100644
Binary files a/app/src/main/res/drawable-hdpi/com_android_camera.png and b/app/src/main/res/drawable-hdpi/com_android_camera.png 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
index 02a2238..be7eae1 100644
Binary files a/app/src/main/res/drawable-hdpi/com_android_clean.png and b/app/src/main/res/drawable-hdpi/com_android_clean.png 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
index ed2d5e2..b204ea0 100644
Binary files a/app/src/main/res/drawable-hdpi/com_android_contacts.png and b/app/src/main/res/drawable-hdpi/com_android_contacts.png 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
index 986e8e5..81bf96f 100644
Binary files a/app/src/main/res/drawable-hdpi/com_android_deskclock.png and b/app/src/main/res/drawable-hdpi/com_android_deskclock.png 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
index 48775aa..5bf5306 100644
Binary files a/app/src/main/res/drawable-hdpi/com_android_dialer.png and b/app/src/main/res/drawable-hdpi/com_android_dialer.png 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
index e9da7c3..a5177c3 100644
Binary files a/app/src/main/res/drawable-hdpi/com_android_gallery3d_app.png and b/app/src/main/res/drawable-hdpi/com_android_gallery3d_app.png 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
index c6c5af5..1ac19f2 100644
Binary files a/app/src/main/res/drawable-hdpi/com_android_mms_ui.png and b/app/src/main/res/drawable-hdpi/com_android_mms_ui.png 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
index 9c898d3..d0b55a9 100644
Binary files a/app/src/main/res/drawable-hdpi/com_android_music.png and b/app/src/main/res/drawable-hdpi/com_android_music.png 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
index 1a258a7..ad4e3a7 100644
Binary files a/app/src/main/res/drawable-hdpi/com_android_settings.png and b/app/src/main/res/drawable-hdpi/com_android_settings.png 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
index 915c773..538075f 100644
Binary files a/app/src/main/res/drawable-hdpi/com_android_soundrecorder.png and b/app/src/main/res/drawable-hdpi/com_android_soundrecorder.png 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
index efefc92..1af7e9e 100644
Binary files a/app/src/main/res/drawable-hdpi/com_android_stk_stkmain.png and b/app/src/main/res/drawable-hdpi/com_android_stk_stkmain.png 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
index 09e158c..a031a22 100644
Binary files a/app/src/main/res/drawable-hdpi/com_android_vdieo.png and b/app/src/main/res/drawable-hdpi/com_android_vdieo.png 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
index deec7e2..2c5128a 100644
Binary files a/app/src/main/res/drawable-hdpi/com_mediatek_filemanager.png and b/app/src/main/res/drawable-hdpi/com_mediatek_filemanager.png 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
index 0bc578f..f62afdf 100644
Binary files a/app/src/main/res/drawable-hdpi/com_mediatek_fmradio.png and b/app/src/main/res/drawable-hdpi/com_mediatek_fmradio.png differ
diff --git a/app/src/main/res/drawable-hdpi/default_head.png b/app/src/main/res/drawable-hdpi/default_head.png
index fd9bca2..2568371 100644
Binary files a/app/src/main/res/drawable-hdpi/default_head.png and b/app/src/main/res/drawable-hdpi/default_head.png differ
diff --git a/app/src/main/res/drawable-hdpi/details_back.png b/app/src/main/res/drawable-hdpi/details_back.png
new file mode 100644
index 0000000..dc692d8
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/details_back.png 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
index 9d8be3c..878dbd4 100644
Binary files a/app/src/main/res/drawable-hdpi/home_contact_icon.png and b/app/src/main/res/drawable-hdpi/home_contact_icon.png 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
index 6daed8e..e1ddcec 100644
Binary files a/app/src/main/res/drawable-hdpi/home_health_code.png and b/app/src/main/res/drawable-hdpi/home_health_code.png 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
new file mode 100644
index 0000000..484855b
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/home_quick_app.png 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
index 2da460f..7adedc0 100644
Binary files a/app/src/main/res/drawable-hdpi/home_sos_icon.png and b/app/src/main/res/drawable-hdpi/home_sos_icon.png differ
diff --git a/app/src/main/res/drawable-hdpi/icon_dialer.png b/app/src/main/res/drawable-hdpi/icon_dialer.png
new file mode 100644
index 0000000..c657b8a
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/icon_dialer.png differ
diff --git a/app/src/main/res/drawable-hdpi/icon_selected.png b/app/src/main/res/drawable-hdpi/icon_selected.png
new file mode 100644
index 0000000..d9560f2
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/icon_selected.png differ
diff --git a/app/src/main/res/drawable-hdpi/icon_unselected.png b/app/src/main/res/drawable-hdpi/icon_unselected.png
new file mode 100644
index 0000000..d21c906
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/icon_unselected.png differ
diff --git a/app/src/main/res/drawable-hdpi/insurance.png b/app/src/main/res/drawable-hdpi/insurance.png
new file mode 100644
index 0000000..0c84e2b
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/insurance.png differ
diff --git a/app/src/main/res/drawable-hdpi/mask.png b/app/src/main/res/drawable-hdpi/mask.png
new file mode 100644
index 0000000..1facd94
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/mask.png differ
diff --git a/app/src/main/res/drawable-hdpi/search_icon.png b/app/src/main/res/drawable-hdpi/search_icon.png
new file mode 100644
index 0000000..77d5ab4
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/search_icon.png differ
diff --git a/app/src/main/res/drawable-hdpi/ship.png b/app/src/main/res/drawable-hdpi/ship.png
new file mode 100644
index 0000000..e1ef521
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/ship.png differ
diff --git a/app/src/main/res/drawable-hdpi/systemapp_icon.png b/app/src/main/res/drawable-hdpi/systemapp_icon.png
index 4e403d5..65938ac 100644
Binary files a/app/src/main/res/drawable-hdpi/systemapp_icon.png and b/app/src/main/res/drawable-hdpi/systemapp_icon.png differ
diff --git a/app/src/main/res/drawable-hdpi/wifi_connect.png b/app/src/main/res/drawable-hdpi/wifi_connect.png
new file mode 100644
index 0000000..2be1fea
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/wifi_connect.png differ
diff --git a/app/src/main/res/drawable-hdpi/wifi_disconnect.png b/app/src/main/res/drawable-hdpi/wifi_disconnect.png
new file mode 100644
index 0000000..758411b
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/wifi_disconnect.png differ
diff --git a/app/src/main/res/drawable/app_select_background.xml b/app/src/main/res/drawable/app_select_background.xml
new file mode 100644
index 0000000..d4c331c
--- /dev/null
+++ b/app/src/main/res/drawable/app_select_background.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/barcolor.xml b/app/src/main/res/drawable/barcolor.xml
new file mode 100644
index 0000000..1f04f33
--- /dev/null
+++ b/app/src/main/res/drawable/barcolor.xml
@@ -0,0 +1,25 @@
+
+
+
+ -
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/buying_bg.xml b/app/src/main/res/drawable/buying_bg.xml
new file mode 100644
index 0000000..e456354
--- /dev/null
+++ b/app/src/main/res/drawable/buying_bg.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/class_bg.xml b/app/src/main/res/drawable/class_bg.xml
new file mode 100644
index 0000000..7b1146c
--- /dev/null
+++ b/app/src/main/res/drawable/class_bg.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/contact_bg1.xml b/app/src/main/res/drawable/contact_bg1.xml
new file mode 100644
index 0000000..77328c0
--- /dev/null
+++ b/app/src/main/res/drawable/contact_bg1.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/contact_bg2.xml b/app/src/main/res/drawable/contact_bg2.xml
new file mode 100644
index 0000000..cd93cd4
--- /dev/null
+++ b/app/src/main/res/drawable/contact_bg2.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/contact_bg3.xml b/app/src/main/res/drawable/contact_bg3.xml
new file mode 100644
index 0000000..221fe59
--- /dev/null
+++ b/app/src/main/res/drawable/contact_bg3.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/control_background_item.xml b/app/src/main/res/drawable/control_background_item.xml
index 03dd6b2..1e5456a 100644
--- a/app/src/main/res/drawable/control_background_item.xml
+++ b/app/src/main/res/drawable/control_background_item.xml
@@ -2,7 +2,7 @@
-
+
-
-
-
-
-
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/custom_bg_health.xml b/app/src/main/res/drawable/custom_bg_health.xml
index 0bfd56f..82577af 100644
--- a/app/src/main/res/drawable/custom_bg_health.xml
+++ b/app/src/main/res/drawable/custom_bg_health.xml
@@ -3,7 +3,7 @@
xmlns:android="http://schemas.android.com/apk/res/android">
+ android:color="@color/white" />
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/join_background.xml b/app/src/main/res/drawable/join_background.xml
index 66d24fe..604e336 100644
--- a/app/src/main/res/drawable/join_background.xml
+++ b/app/src/main/res/drawable/join_background.xml
@@ -1,9 +1,9 @@
-
+
-
+
-
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/notice_voice_background.xml b/app/src/main/res/drawable/notice_voice_background.xml
index 0383881..374644b 100644
--- a/app/src/main/res/drawable/notice_voice_background.xml
+++ b/app/src/main/res/drawable/notice_voice_background.xml
@@ -1,7 +1,7 @@
-
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/seekbar_progress_default.xml b/app/src/main/res/drawable/seekbar_progress_default.xml
index 51055e4..3743c05 100644
--- a/app/src/main/res/drawable/seekbar_progress_default.xml
+++ b/app/src/main/res/drawable/seekbar_progress_default.xml
@@ -36,7 +36,7 @@
-
+
diff --git a/app/src/main/res/drawable/subsidy_bg.xml b/app/src/main/res/drawable/subsidy_bg.xml
new file mode 100644
index 0000000..8380970
--- /dev/null
+++ b/app/src/main/res/drawable/subsidy_bg.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout-land/activity_control.xml b/app/src/main/res/layout-land/activity_control.xml
index d83e2ba..f454c21 100644
--- a/app/src/main/res/layout-land/activity_control.xml
+++ b/app/src/main/res/layout-land/activity_control.xml
@@ -37,7 +37,6 @@
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toEndOf="@+id/iv_back"
app:layout_constraintTop_toTopOf="parent" />
-
-
-
-
-
-
-
-
\ 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
index fd385cc..5e9032f 100644
--- a/app/src/main/res/layout-land/fragment_custom.xml
+++ b/app/src/main/res/layout-land/fragment_custom.xml
@@ -13,37 +13,120 @@
android:id="@+id/constraintLayout5"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_40"
+ android:layout_marginStart="@dimen/dp_8"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
-
-
-
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toTopOf="parent">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+ android:background="@drawable/custom_bg_health"
+ android:visibility="gone">
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
+
@@ -591,7 +711,7 @@
-
+
diff --git a/app/src/main/res/layout-land/fragment_second.xml b/app/src/main/res/layout-land/fragment_second.xml
index 864d397..6f85edb 100644
--- a/app/src/main/res/layout-land/fragment_second.xml
+++ b/app/src/main/res/layout-land/fragment_second.xml
@@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
- tools:context=".fragment.SecondFragment">
+ tools:context="fragment.second.SecondFragment">
@@ -30,20 +30,31 @@
android:id="@+id/textView9"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_marginStart="16dp"
- android:layout_marginTop="16dp"
+ android:layout_marginStart="@dimen/dp_12"
+ android:layout_marginTop="@dimen/dp_12"
android:maxLines="1"
android:text="秒杀抢购"
android:textColor="@color/black"
- android:textSize="18sp"
+ android:textSize="@dimen/sp_15"
android:textStyle="bold"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ app:layout_constraintTop_toBottomOf="@+id/textView9"
+ tools:layout_editor_absoluteX="0dp" />
@@ -181,10 +82,10 @@
@@ -192,20 +93,31 @@
android:id="@+id/textView13"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_marginStart="16dp"
- android:layout_marginTop="16dp"
+ android:layout_marginStart="@dimen/dp_12"
+ android:layout_marginTop="@dimen/dp_12"
android:maxLines="1"
android:text="养生资讯"
android:textColor="@color/black"
- android:textSize="18sp"
+ android:textSize="@dimen/sp_15"
android:textStyle="bold"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
+
+
+
+
@@ -246,7 +167,7 @@
android:id="@+id/tv_content"
android:layout_width="0dp"
android:layout_height="0dp"
- android:layout_marginTop="8dp"
+ android:layout_marginTop="@dimen/dp_8"
android:text=""
app:layout_constraintBottom_toBottomOf="@+id/iv_aimg"
app:layout_constraintEnd_toEndOf="parent"
@@ -257,8 +178,8 @@
android:id="@+id/tv_readnow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_marginEnd="16dp"
- android:layout_marginBottom="16dp"
+ android:layout_marginEnd="@dimen/dp_12"
+ android:layout_marginBottom="@dimen/dp_12"
android:text="阅读全文"
android:textSize="22sp"
app:layout_constraintBottom_toBottomOf="parent"
@@ -270,17 +191,18 @@
android:id="@+id/cl_activity"
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:layout_marginStart="4dp"
- android:layout_marginTop="4dp"
- android:layout_marginEnd="8dp"
- android:layout_marginBottom="8dp"
+ android:layout_marginStart="@dimen/dp_4"
+ android:layout_marginTop="@dimen/dp_4"
+ android:layout_marginEnd="@dimen/dp_8"
+ android:layout_marginBottom="@dimen/dp_8"
android:layout_weight="1"
- android:background="@drawable/custom_bg">
+ android:background="@drawable/custom_bg"
+ android:visibility="gone">
+
+
-
@@ -552,7 +482,7 @@
android:id="@+id/tv_title_d"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_marginStart="16dp"
+ android:layout_marginStart="@dimen/dp_12"
android:maxLines="1"
android:text="活动名称"
android:textColor="@color/black"
@@ -572,7 +502,7 @@
app:layout_constraintBottom_toBottomOf="@+id/tv_title_d"
app:layout_constraintStart_toEndOf="@+id/tv_title_d"
app:layout_constraintTop_toTopOf="@+id/tv_title_d"
- app:layout_goneMarginStart="4dp" />
+ app:layout_goneMarginStart="@dimen/dp_4" />
-
-
diff --git a/app/src/main/res/layout-land/item_goods_list.xml b/app/src/main/res/layout-land/item_goods_list.xml
new file mode 100644
index 0000000..24cc978
--- /dev/null
+++ b/app/src/main/res/layout-land/item_goods_list.xml
@@ -0,0 +1,157 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout-land/item_notification.xml b/app/src/main/res/layout-land/item_notification.xml
new file mode 100644
index 0000000..c2390ee
--- /dev/null
+++ b/app/src/main/res/layout-land/item_notification.xml
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout-port/activity_control.xml b/app/src/main/res/layout-port/activity_control.xml
index a08ca6d..ce6d00f 100644
--- a/app/src/main/res/layout-port/activity_control.xml
+++ b/app/src/main/res/layout-port/activity_control.xml
@@ -37,7 +37,6 @@
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toEndOf="@+id/iv_back"
app:layout_constraintTop_toTopOf="parent" />
-
-
-
-
-
-
-
-
@@ -479,7 +471,5 @@
app:layout_constraintStart_toEndOf="@+id/iv_location"
app:layout_constraintTop_toTopOf="parent" />
-
-
\ 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
index c787f1f..35318e1 100644
--- a/app/src/main/res/layout-port/fragment_custom.xml
+++ b/app/src/main/res/layout-port/fragment_custom.xml
@@ -13,37 +13,119 @@
android:id="@+id/constraintLayout5"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_40"
+ android:layout_marginStart="@dimen/dp_8"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
-
-
-
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toTopOf="parent">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -190,7 +273,7 @@
android:orientation="horizontal">
+ android:background="@drawable/custom_bg_white">
-
-
+ app:layout_constraintTop_toTopOf="parent" />
+
-
-
-
-
-
-
-
-
-
-
@@ -273,7 +342,7 @@
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/dp_8"
android:text="紧急呼叫"
- android:textColor="@color/lightGray"
+ android:textColor="@color/title_gray"
android:textSize="@dimen/sp_17"
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="parent"
@@ -333,6 +402,7 @@
android:layout_height="@dimen/dp_20"
android:layout_marginStart="@dimen/dp_8"
android:layout_marginTop="@dimen/dp_16"
+ android:visibility="gone"
android:src="@drawable/home_icon_clean"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
@@ -343,10 +413,10 @@
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/dp_8"
android:text="一键加速"
- android:textColor="@color/lightGray"
+ android:textColor="@color/title_gray"
android:textSize="@dimen/sp_17"
android:textStyle="bold"
- android:visibility="gone"
+ android:visibility="visible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
@@ -446,7 +516,6 @@
-
+ android:background="@drawable/custom_bg_health"
+ android:visibility="gone">
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toTopOf="parent" />
+
+
+
+
+
+
+
+
+
+
+
+
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toTopOf="parent" />
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toTopOf="parent" />
-
+
-
+
-
+
+
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
+
@@ -688,7 +827,6 @@
-
\ 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
index 93f82b2..e3416c5 100644
--- a/app/src/main/res/layout-port/fragment_second.xml
+++ b/app/src/main/res/layout-port/fragment_second.xml
@@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
- tools:context=".fragment.SecondFragment">
+ tools:context="fragment.second.SecondFragment">
@@ -25,20 +25,31 @@
android:id="@+id/textView9"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_marginStart="16dp"
- android:layout_marginTop="16dp"
+ android:layout_marginStart="@dimen/dp_12"
+ android:layout_marginTop="@dimen/dp_12"
android:maxLines="1"
android:text="秒杀抢购"
android:textColor="@color/black"
- android:textSize="18sp"
+ android:textSize="@dimen/sp_15"
android:textStyle="bold"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ app:layout_constraintTop_toBottomOf="@+id/textView9" />
+
+
+
+
@@ -234,7 +154,7 @@
android:id="@+id/tv_content"
android:layout_width="0dp"
android:layout_height="0dp"
- android:layout_marginTop="8dp"
+ android:layout_marginTop="@dimen/dp_8"
android:text=""
app:layout_constraintBottom_toBottomOf="@+id/iv_aimg"
app:layout_constraintEnd_toEndOf="parent"
@@ -245,8 +165,8 @@
android:id="@+id/tv_readnow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_marginEnd="16dp"
- android:layout_marginBottom="16dp"
+ android:layout_marginEnd="@dimen/dp_12"
+ android:layout_marginBottom="@dimen/dp_12"
android:text="阅读全文"
android:textSize="22sp"
app:layout_constraintBottom_toBottomOf="parent"
@@ -258,17 +178,18 @@
android:id="@+id/cl_activity"
android:layout_width="match_parent"
android:layout_height="0dp"
- android:layout_marginStart="8dp"
- android:layout_marginTop="4dp"
- android:layout_marginEnd="8dp"
- android:layout_marginBottom="8dp"
+ android:layout_marginStart="@dimen/dp_8"
+ android:layout_marginTop="@dimen/dp_4"
+ android:layout_marginEnd="@dimen/dp_8"
+ android:layout_marginBottom="@dimen/dp_8"
android:layout_weight="2"
- android:background="@drawable/custom_bg">
+ android:background="@drawable/custom_bg"
+ android:visibility="gone">
+
+
-
@@ -541,7 +470,7 @@
android:id="@+id/tv_title_d"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_marginStart="16dp"
+ android:layout_marginStart="@dimen/dp_12"
android:maxLines="1"
android:text="活动名称"
android:textColor="@color/black"
@@ -561,7 +490,7 @@
app:layout_constraintBottom_toBottomOf="@+id/tv_title_d"
app:layout_constraintStart_toEndOf="@+id/tv_title_d"
app:layout_constraintTop_toTopOf="@+id/tv_title_d"
- app:layout_goneMarginStart="4dp" />
+ app:layout_goneMarginStart="@dimen/dp_4" />
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout-port/item_goods_list.xml b/app/src/main/res/layout-port/item_goods_list.xml
new file mode 100644
index 0000000..78ff5ca
--- /dev/null
+++ b/app/src/main/res/layout-port/item_goods_list.xml
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/item_notification.xml b/app/src/main/res/layout-port/item_notification.xml
similarity index 83%
rename from app/src/main/res/layout/item_notification.xml
rename to app/src/main/res/layout-port/item_notification.xml
index 62739ad..e79cee9 100644
--- a/app/src/main/res/layout/item_notification.xml
+++ b/app/src/main/res/layout-port/item_notification.xml
@@ -1,7 +1,6 @@
@@ -9,7 +8,6 @@
android:id="@+id/root"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:layout_margin="16dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
@@ -26,21 +24,33 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
+
+
+ app:layout_constraintTop_toBottomOf="@+id/iv_cover" />
diff --git a/app/src/main/res/layout/activity_details.xml b/app/src/main/res/layout/activity_details.xml
new file mode 100644
index 0000000..3546b06
--- /dev/null
+++ b/app/src/main/res/layout/activity_details.xml
@@ -0,0 +1,260 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_info_list.xml b/app/src/main/res/layout/activity_info_list.xml
new file mode 100644
index 0000000..8903711
--- /dev/null
+++ b/app/src/main/res/layout/activity_info_list.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
\ 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
new file mode 100644
index 0000000..79f90ea
--- /dev/null
+++ b/app/src/main/res/layout/activity_quick_app.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_spike_list.xml b/app/src/main/res/layout/activity_spike_list.xml
new file mode 100644
index 0000000..bd268be
--- /dev/null
+++ b/app/src/main/res/layout/activity_spike_list.xml
@@ -0,0 +1,102 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ 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
index 3d163bf..9bfc5e0 100644
--- a/app/src/main/res/layout/fragment_applist.xml
+++ b/app/src/main/res/layout/fragment_applist.xml
@@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
- tools:context=".fragment.AppListFragment">
+ tools:context="fragment.AppListFragment">
+
+
+
+
+
+
+
+
+
+
+
+
\ 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
new file mode 100644
index 0000000..4378edc
--- /dev/null
+++ b/app/src/main/res/layout/item_app_select.xml
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/item_article.xml b/app/src/main/res/layout/item_article.xml
new file mode 100644
index 0000000..15f0fcb
--- /dev/null
+++ b/app/src/main/res/layout/item_article.xml
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/item_goods.xml b/app/src/main/res/layout/item_goods.xml
new file mode 100644
index 0000000..78ff5ca
--- /dev/null
+++ b/app/src/main/res/layout/item_goods.xml
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.png b/app/src/main/res/mipmap-hdpi/ic_launcher.png
index ec3102b..50f2706 100644
Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher.png and b/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.png b/app/src/main/res/mipmap-mdpi/ic_launcher.png
index ec3102b..50f2706 100644
Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher.png and b/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/app/src/main/res/mipmap-xhdpi/ic_launcher.png
index ec3102b..50f2706 100644
Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher.png and b/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
index ec3102b..50f2706 100644
Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml
index fb88041..18a36ad 100644
--- a/app/src/main/res/values/colors.xml
+++ b/app/src/main/res/values/colors.xml
@@ -12,9 +12,10 @@
#FFD3D3D3
#4880ff
#F8B551
- #0480FF
+ #0480FF
#4D4B50
#FF0000
+ #F1B3B3
#17233b
#8e6afb
@@ -25,10 +26,12 @@
#3f8f4b
#e08c61
#536fae
- #92e4a0
+ #00d56b
#eae8e8
#bbbaba
#182237
-
+ #858585
+ #F44250
+ #F5AAA7
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index f9ee09d..c989c5c 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -2,5 +2,5 @@
AIOS系统
- Hello blank fragment
+ Hello blank secondFragment