Home | History | Annotate | Download | only in inputmethodcommon

Lines Matching full:context

25 import android.content.Context;
49 private Context mContext;
53 * @param context the context for this application.
57 public boolean init(final Context context, final PreferenceScreen prefScreen) {
58 mContext = context;
59 mImm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
60 mImi = getMyImi(context, mImm);
64 mSubtypeEnablerPreference = new Preference(context);
69 final CharSequence title = getSubtypeEnablerTitle(context);
79 context.startActivity(intent);
88 private static InputMethodInfo getMyImi(Context context, InputMethodManager imm) {
92 if (imis.get(i).getPackageName().equals(context.getPackageName())) {
100 Context context, InputMethodManager imm, InputMethodInfo imi) {
101 if (context == null || imm == null || imi == null) return null;
110 sb.append(subtype.getDisplayName(context, imi.getPackageName(),
172 private CharSequence getSubtypeEnablerTitle(Context context) {
174 return context.getString(mSubtypeEnablerTitleRes);