Skip to content

Instantly share code, notes, and snippets.

@Ellisonlee
Ellisonlee / RealPathUtil.java
Last active April 19, 2022 00:39 — forked from tatocaster/RealPathUtil.java
Real Path Utility class for Android, works for all API
public class RealPathUtil {
public static String getRealPath(Context context, Uri fileUri) {
String realPath;
// SDK < API11
if (Build.VERSION.SDK_INT < 11) {
realPath = RealPathUtil.getRealPathFromURI_BelowAPI11(context, fileUri);
}
// SDK >= 11 && SDK < 19
else if (Build.VERSION.SDK_INT < 19) {
http://stackoverflow.com/questions/13708132/not-able-to-change-text-color-and-text-background-of-output-in-visual-studio-201
http://stackoverflow.com/questions/13708132/not-able-to-change-text-color-and-text-background-of-output-in-visual-studio-201