version:1.7

fix:
update:修改布局,爱心守护播放视频,
This commit is contained in:
2022-02-25 17:23:59 +08:00
parent 47b5f12c6c
commit f74e6b106c
64 changed files with 1494 additions and 422 deletions

View File

@@ -1,43 +1,55 @@
package com.uiui.os.utils;
import android.util.Log;
import java.util.ArrayList;
import java.util.List;
public class IconUtils {
public static List<String> appClassNameList = new ArrayList<String>() {
{
this.add("com.android.appstore");//应用市场
this.add("com.android.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");//电子邮件
}
};
public static List<String> appClassNameList = new ArrayList<String>() {{
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<String> appIconList = new ArrayList<String>() {{
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");
@@ -65,5 +77,52 @@ public class IconUtils {
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<String> appIconList2 = new ArrayList<String>() {{
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());
}
}