1. 获取手机里的所有已安装的应用 以前写过一个SoftProviderUtil工具类,拿出来分享一个.通过PackageManager,不仅可以获取PackageName,判断此进程是否为系统应用,安装位置(在内存卡还是SD卡),还可以应用名称以及应用图标.代码如下.其中SoftInfo为自定义的业务类,成员变量即为要获取的信息,加上set/get方法即可. /** * For Info of InstalledPackages * Created by user on 2016/4/23.
原文地址:https://blog.csdn.net/MikoGodZd/article/details/50979653 在Android 编程中经常会用到uri转化为文件路径 下面是4.4后通过Uri获取路径以及文件名一种方法 public static String getRealFilePath( final Context context, final Uri uri ) { if ( null == uri ) return null; final String scheme = u
android.net.Uri 简介 public abstract class android.net.Uri extends Object implements Parcelable, Comparable<Uri> Immutable URI reference. A URI reference includes a URI and a fragment, the component of the URI following a '#'. Builds and parses URI re