109 lines
3.5 KiB
Java
Raw Normal View History

2016-08-23 05:18:28 +08:00
package com.topjohnwu.magisk.utils;
2016-08-23 03:50:46 +08:00
2016-08-28 03:52:03 +08:00
import android.content.Context;
2017-01-28 06:13:07 +08:00
import android.content.SharedPreferences;
2017-07-22 22:14:02 +08:00
import android.content.res.Configuration;
2017-02-15 05:24:02 +08:00
import android.database.Cursor;
2016-08-29 06:35:07 +08:00
import android.net.Uri;
2017-02-15 05:24:02 +08:00
import android.provider.OpenableColumns;
2017-07-22 22:14:02 +08:00
import android.support.annotation.StringRes;
2016-08-28 03:52:03 +08:00
2017-02-07 02:01:32 +08:00
import com.topjohnwu.magisk.MagiskManager;
2016-08-28 03:52:03 +08:00
import com.topjohnwu.magisk.R;
2017-07-22 22:14:02 +08:00
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
2016-08-22 10:09:36 +02:00
import java.util.List;
2017-07-22 22:14:02 +08:00
import java.util.Locale;
2016-08-20 17:26:49 +02:00
public class Utils {
2017-01-28 06:13:07 +08:00
public static int getPrefsInt(SharedPreferences prefs, String key, int def) {
return Integer.parseInt(prefs.getString(key, String.valueOf(def)));
}
2017-08-29 01:34:42 +08:00
public static int getPrefsInt(SharedPreferences prefs, String key) {
return getPrefsInt(prefs, key, 0);
}
public static MagiskManager getMagiskManager(Context context) {
return (MagiskManager) context.getApplicationContext();
2017-02-05 22:02:14 +08:00
}
2017-02-15 05:24:02 +08:00
public static String getNameFromUri(Context context, Uri uri) {
String name = null;
try (Cursor c = context.getContentResolver().query(uri, null, null, null, null)) {
if (c != null) {
int nameIndex = c.getColumnIndex(OpenableColumns.DISPLAY_NAME);
if (nameIndex != -1) {
c.moveToFirst();
name = c.getString(nameIndex);
}
}
}
if (name == null) {
int idx = uri.getPath().lastIndexOf('/');
name = uri.getPath().substring(idx + 1);
}
return name;
}
2017-10-16 00:54:48 +08:00
public static String getLocaleString(Locale locale, @StringRes int id) {
Context context = MagiskManager.get();
2017-07-22 22:14:02 +08:00
Configuration config = context.getResources().getConfiguration();
config.setLocale(locale);
Context localizedContext = context.createConfigurationContext(config);
return localizedContext.getString(id);
}
2017-10-16 00:54:48 +08:00
public static List<Locale> getAvailableLocale() {
2017-07-22 22:14:02 +08:00
List<Locale> locales = new ArrayList<>();
HashSet<String> set = new HashSet<>();
Locale locale;
2017-10-16 00:54:48 +08:00
@StringRes int compareId = R.string.download_file_error;
2017-08-27 01:38:05 +08:00
2017-07-22 22:14:02 +08:00
// Add default locale
locales.add(Locale.ENGLISH);
2017-10-16 00:54:48 +08:00
set.add(getLocaleString(Locale.ENGLISH, compareId));
2017-07-22 22:14:02 +08:00
// Add some special locales
locales.add(Locale.TAIWAN);
2017-10-16 00:54:48 +08:00
set.add(getLocaleString(Locale.TAIWAN, compareId));
2017-07-22 22:14:02 +08:00
locale = new Locale("pt", "BR");
locales.add(locale);
2017-10-16 00:54:48 +08:00
set.add(getLocaleString(locale, compareId));
2017-07-22 22:14:02 +08:00
// Other locales
2017-10-16 00:54:48 +08:00
for (String s : MagiskManager.get().getAssets().getLocales()) {
2017-07-22 22:14:02 +08:00
locale = Locale.forLanguageTag(s);
2017-10-16 00:54:48 +08:00
if (set.add(getLocaleString(locale, compareId))) {
2017-07-22 22:14:02 +08:00
locales.add(locale);
}
}
Collections.sort(locales, (l1, l2) -> l1.getDisplayName(l1).compareTo(l2.getDisplayName(l2)));
return locales;
}
2017-08-22 03:01:54 +08:00
2017-11-20 03:09:08 +08:00
public static int dpInPx(int dp) {
Context context = MagiskManager.get();
float scale = context.getResources().getDisplayMetrics().density;
return (int) (dp * scale + 0.5);
}
public static String fmt(String fmt, Object... args) {
return String.format(Locale.US, fmt, args);
}
2018-05-06 02:51:23 +08:00
public static String dos2unix(String s) {
String newString = s.replace("\r\n", "\n");
if(!newString.endsWith("\n")) {
return newString + "\n";
} else {
return newString;
}
}
2016-09-21 09:22:36 -05:00
}