diff --git a/core/java/android/view/inputmethod/InputMethodInfo.java b/core/java/android/view/inputmethod/InputMethodInfo.java index 43306d094bda8..ec2c05ea982fe 100644 --- a/core/java/android/view/inputmethod/InputMethodInfo.java +++ b/core/java/android/view/inputmethod/InputMethodInfo.java @@ -38,7 +38,6 @@ import android.util.Printer; import android.util.Slog; import android.util.Xml; import android.view.inputmethod.InputMethodSubtype.InputMethodSubtypeBuilder; -import android.view.inputmethod.InputMethodSubtypeArray; import java.io.IOException; import java.util.ArrayList; @@ -122,7 +121,7 @@ public final class InputMethodInfo implements Parcelable { * @param context The Context in which we are parsing the input method. * @param service The ResolveInfo returned from the package manager about * this input method's component. - * @param additionalSubtypes additional subtypes being added to this InputMethodInfo + * @param additionalSubtypesMap additional subtypes being added to this InputMethodInfo * @hide */ public InputMethodInfo(Context context, ResolveInfo service, @@ -429,12 +428,31 @@ public final class InputMethodInfo implements Parcelable { } } + /** + * @return {@code true} if the IME is marked to be Encryption-Aware. + * @hide + */ + public boolean isEncryptionAware() { + if (mService == null || mService.serviceInfo == null || + mService.serviceInfo.applicationInfo == null) { + return false; + } + return mService.serviceInfo.applicationInfo.isEncryptionAware(); + } + public void dump(Printer pw, String prefix) { pw.println(prefix + "mId=" + mId + " mSettingsActivityName=" + mSettingsActivityName + " mSupportsSwitchingToNextInputMethod=" + mSupportsSwitchingToNextInputMethod); pw.println(prefix + "mIsDefaultResId=0x" + Integer.toHexString(mIsDefaultResId)); + if (mService != null && mService.serviceInfo != null && + mService.serviceInfo.applicationInfo != null) { + pw.println(" encryptionAware=" + + mService.serviceInfo.applicationInfo.isEncryptionAware()); + } else { + pw.println(" encryptionAware=unknown"); + } pw.println(prefix + "Service:"); mService.dump(pw, prefix + " "); }