Cherish: Custom fp icon
Signed-off-by: Hưng Phan <phandinhhungvp2001@gmail.com>
This commit is contained in:
@@ -507,5 +507,11 @@
|
||||
<!-- UDFPS icon picker -->
|
||||
<string name="udfps_icon_picker_title">UDFPS icon picker</string>
|
||||
<string name="udfps_icon_picker_summary">Choose your favorite fingerprint icon</string>
|
||||
|
||||
<!-- Custom FOD Icon -->
|
||||
<string name="custom_fp_icon_title">Custom UDFPS Icon</string>
|
||||
<string name="custom_fp_icon_summary">Enable custom UDFPS Icon from files</string>
|
||||
<string name="custom_fp_select_title">Select Custom UDFPS Icon</string>
|
||||
<string name="custom_fp_select_summary">Select custom image from your saved files or gallery</string>
|
||||
|
||||
</resources>
|
||||
|
||||
@@ -24,6 +24,20 @@
|
||||
android:summary="@string/udfps_icon_picker_summary"
|
||||
android:fragment="com.cherish.settings.fragments.UdfpsIconPicker" />
|
||||
|
||||
<com.cherish.settings.preferences.SystemSettingSwitchPreference
|
||||
android:key="custom_fp_icon_enabled"
|
||||
android:title="@string/custom_fp_icon_title"
|
||||
android:summary="@string/custom_fp_icon_summary"
|
||||
android:defaultValue="false" />
|
||||
|
||||
<Preference
|
||||
android:key="custom_fp_file_select"
|
||||
android:title="@string/custom_fp_select_title"
|
||||
android:summary="@string/custom_fp_select_summary"
|
||||
android:dependency="custom_fp_icon_enabled"
|
||||
android:persistent="false">
|
||||
</Preference>
|
||||
|
||||
<Preference
|
||||
android:key="udfps_recognizing_animation_preview"
|
||||
android:title="@string/udfps_recog_animation_effect_title"
|
||||
|
||||
@@ -16,6 +16,16 @@
|
||||
package com.cherish.settings.fragments;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.graphics.Bitmap;
|
||||
import android.graphics.BitmapFactory;
|
||||
import android.graphics.Color;
|
||||
import android.graphics.drawable.ColorDrawable;
|
||||
import android.graphics.drawable.Drawable;
|
||||
import android.graphics.drawable.BitmapDrawable;
|
||||
import android.os.UserHandle;
|
||||
import android.os.ParcelFileDescriptor;
|
||||
import com.cherish.settings.fragments.UdfpsIconPicker;
|
||||
import android.text.TextUtils;
|
||||
import android.app.WallpaperManager;
|
||||
import android.content.ContentResolver;
|
||||
import android.content.Context;
|
||||
@@ -35,7 +45,7 @@ import androidx.preference.PreferenceFragment;
|
||||
import androidx.preference.PreferenceManager;
|
||||
import androidx.preference.PreferenceScreen;
|
||||
import androidx.preference.SwitchPreference;
|
||||
|
||||
import com.cherish.settings.preferences.SystemSettingSwitchPreference;
|
||||
import com.android.internal.logging.nano.MetricsProto;
|
||||
import com.android.internal.util.cherish.CherishUtils;
|
||||
|
||||
@@ -44,11 +54,22 @@ import com.android.settings.SettingsPreferenceFragment;
|
||||
import com.android.settings.search.BaseSearchIndexProvider;
|
||||
import com.android.settingslib.search.SearchIndexable;
|
||||
|
||||
import java.io.FileDescriptor;
|
||||
import java.util.Arrays;
|
||||
|
||||
@SearchIndexable(forTarget = SearchIndexable.ALL & ~SearchIndexable.ARC)
|
||||
public class Udfps extends SettingsPreferenceFragment implements
|
||||
Preference.OnPreferenceChangeListener {
|
||||
|
||||
private static final String UDFPS_CUSTOMIZATION = "udfps_customization";
|
||||
private static final String CUSTOM_FOD_ICON_KEY = "custom_fp_icon_enabled";
|
||||
private static final String CUSTOM_FP_FILE_SELECT = "custom_fp_file_select";
|
||||
private static final int REQUEST_PICK_IMAGE = 0;
|
||||
|
||||
private PreferenceCategory mUdfpsCustomization;
|
||||
private Preference mCustomFPImage;
|
||||
private SystemSettingSwitchPreference mCustomFodIcon;
|
||||
private Preference mUdfpsIconPicker;
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle icicle) {
|
||||
@@ -64,15 +85,84 @@ public class Udfps extends SettingsPreferenceFragment implements
|
||||
if (!udfpsResPkgInstalled) {
|
||||
prefSet.removePreference(mUdfpsCustomization);
|
||||
}
|
||||
mUdfpsIconPicker = (Preference) prefSet.findPreference("udfps_icon_picker");
|
||||
|
||||
mCustomFPImage = findPreference(CUSTOM_FP_FILE_SELECT);
|
||||
final String customIconURI = Settings.System.getString(getContext().getContentResolver(),
|
||||
Settings.System.OMNI_CUSTOM_FP_ICON);
|
||||
if (!TextUtils.isEmpty(customIconURI)) {
|
||||
setPickerIcon(customIconURI);
|
||||
}
|
||||
|
||||
mCustomFodIcon = (SystemSettingSwitchPreference) findPreference(CUSTOM_FOD_ICON_KEY);
|
||||
boolean val = Settings.System.getIntForUser(getActivity().getContentResolver(),
|
||||
Settings.System.OMNI_CUSTOM_FP_ICON_ENABLED, 0, UserHandle.USER_CURRENT) == 1;
|
||||
mCustomFodIcon.setOnPreferenceChangeListener(this);
|
||||
if (val) {
|
||||
mUdfpsIconPicker.setEnabled(false);
|
||||
} else {
|
||||
mUdfpsIconPicker.setEnabled(true);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onPreferenceChange(Preference preference, Object newValue) {
|
||||
ContentResolver resolver = getActivity().getContentResolver();
|
||||
if (preference == mCustomFodIcon) {
|
||||
boolean val = (Boolean) newValue;
|
||||
Settings.System.putIntForUser(getActivity().getContentResolver(),
|
||||
Settings.System.OMNI_CUSTOM_FP_ICON_ENABLED, val ? 1 : 0,
|
||||
UserHandle.USER_CURRENT);
|
||||
if (val) {
|
||||
mUdfpsIconPicker.setEnabled(false);
|
||||
} else {
|
||||
mUdfpsIconPicker.setEnabled(true);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onPreferenceTreeClick(Preference preference) {
|
||||
if (preference == mCustomFPImage) {
|
||||
Intent intent = new Intent(Intent.ACTION_PICK);
|
||||
intent.setType("image/*");
|
||||
startActivityForResult(intent, REQUEST_PICK_IMAGE);
|
||||
return true;
|
||||
}
|
||||
return super.onPreferenceTreeClick(preference);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onActivityResult(int requestCode, int resultCode, Intent result) {
|
||||
if (requestCode == REQUEST_PICK_IMAGE && resultCode == Activity.RESULT_OK) {
|
||||
Uri uri = null;
|
||||
if (result != null) {
|
||||
uri = result.getData();
|
||||
setPickerIcon(uri.toString());
|
||||
Settings.System.putString(getContentResolver(), Settings.System.OMNI_CUSTOM_FP_ICON,
|
||||
uri.toString());
|
||||
}
|
||||
} else if (requestCode == REQUEST_PICK_IMAGE && resultCode == Activity.RESULT_CANCELED) {
|
||||
mCustomFPImage.setIcon(new ColorDrawable(Color.TRANSPARENT));
|
||||
Settings.System.putString(getContentResolver(), Settings.System.OMNI_CUSTOM_FP_ICON, "");
|
||||
}
|
||||
}
|
||||
|
||||
private void setPickerIcon(String uri) {
|
||||
try {
|
||||
ParcelFileDescriptor parcelFileDescriptor =
|
||||
getContext().getContentResolver().openFileDescriptor(Uri.parse(uri), "r");
|
||||
FileDescriptor fileDescriptor = parcelFileDescriptor.getFileDescriptor();
|
||||
Bitmap image = BitmapFactory.decodeFileDescriptor(fileDescriptor);
|
||||
parcelFileDescriptor.close();
|
||||
Drawable d = new BitmapDrawable(getResources(), image);
|
||||
mCustomFPImage.setIcon(d);
|
||||
}
|
||||
catch (Exception e) {}
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getMetricsCategory() {
|
||||
return MetricsProto.MetricsEvent.CHERISH_SETTINGS;
|
||||
|
||||
Reference in New Issue
Block a user