• Android 获取Launcher的APP列表

    public class GetAppsInfo { private PackageManager packageManager; private int mIconDpi; private List<AppInfo> appInfos = new ArrayList&...

    isAccessibilityEnabled

    private fun isAccessibilityEnabled(id: String): Boolean { val am = getSystemService(ACCESSIBILITY_SERVICE) as AccessibilityManager v...

    String.format的一些问题

    var a="正常用法%s"println(String.format(a,"ssss"))var a="带%%的用法%s"println(String.format(a,"ssss"))var a="另%1\...

    logcat日志

    public static final String path="/sdcard/mokeelog"; public static String saveLog() throws IOException { String filePath=path; ...

    android 通过包名获取应用的所有入口

    private List<ResolveInfo> getMainActivitys(PackageManager pm,String packageName){Intent infoIntent = new Intent();infoIntent.addCategory("androi...

    字母[a-zA-Z]转数字

    /** * 字母转换数字 * @param phoneNumber * @return */ public static String normalizeNumber(String phoneNumber) { StringBuilder sb =...

    获取launcher中的应用程序列表

    PackageManager pm=getPackageManager();Intent intent=new Intent(Intent.ACTION_MAIN);intent.addCategory(Intent.CATEGORY_LAUNCHER);List<ResolveInfo>...

    SystemAppInstaller

    /** * */package com.asksven.android.common.utils;import java.io.FileOutputStream;import java.io.IOException;import java.io.InputStream;import java.io...

    dip2px&px2dip

    import android.app.Activity;import android.content.Context;import android.util.DisplayMetrics; /** * 像素转换类 */public class PixelFormat { /** ...

    检测Activity是否处于活动状态

    public boolean isTopActivy(String cmdName){ ActivityManager manager = (ActivityManager) getSystemService(ACTIVITY_SERVICE); List<Ru...