Searched defs:xmlLayoutResId (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DPasswordEntryKeyboard.java54 public PasswordEntryKeyboard(Context context, int xmlLayoutResId) { argument
55 this(context, xmlLayoutResId, 0);
58 public PasswordEntryKeyboard(Context context, int xmlLayoutResId, int width, int height) { argument
59 this(context, xmlLayoutResId, 0, width, height);
62 public PasswordEntryKeyboard(Context context, int xmlLayoutResId, int mode) { argument
63 super(context, xmlLayoutResId, mode);
67 public PasswordEntryKeyboard(Context context, int xmlLayoutResId, int mode, argument
69 super(context, xmlLayoutResId, mode, width, height);
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java519 * @param xmlLayoutResId the resource file that contains the keyboard layout and keys.
521 public Keyboard(Context context, int xmlLayoutResId) { argument
522 this(context, xmlLayoutResId, 0);
529 * @param xmlLayoutResId the resource file that contains the keyboard layout and keys.
534 public Keyboard(Context context, @XmlRes int xmlLayoutResId, int modeId, int width, argument
546 loadKeyboard(context, context.getResources().getXml(xmlLayoutResId));
553 * @param xmlLayoutResId the resource file that contains the keyboard layout and keys.
556 public Keyboard(Context context, @XmlRes int xmlLayoutResId, int modeId) { argument
569 loadKeyboard(context, context.getResources().getXml(xmlLayoutResId));

Completed in 40 milliseconds