use of com.android.layoutlib.bridge.android.BridgeIInputMethodManager in project android_frameworks_base by ParanoidAndroid.
the class InputMethodManager_Delegate method getInstance.
// ---- Overridden methods ----
@LayoutlibDelegate
static /*package*/
InputMethodManager getInstance() {
synchronized (InputMethodManager.class) {
InputMethodManager imm = InputMethodManager.peekInstance();
if (imm == null) {
imm = new InputMethodManager(new BridgeIInputMethodManager(), Looper.getMainLooper());
InputMethodManager.sInstance = imm;
}
return imm;
}
}
use of com.android.layoutlib.bridge.android.BridgeIInputMethodManager in project platform_frameworks_base by android.
the class InputMethodManager_Delegate method getInstance.
// ---- Overridden methods ----
@LayoutlibDelegate
static /*package*/
InputMethodManager getInstance() {
synchronized (InputMethodManager.class) {
InputMethodManager imm = InputMethodManager.peekInstance();
if (imm == null) {
imm = new InputMethodManager(new BridgeIInputMethodManager(), Looper.getMainLooper());
InputMethodManager.sInstance = imm;
}
return imm;
}
}
use of com.android.layoutlib.bridge.android.BridgeIInputMethodManager in project android_frameworks_base by AOSPA.
the class InputMethodManager_Delegate method getInstance.
// ---- Overridden methods ----
@LayoutlibDelegate
static /*package*/
InputMethodManager getInstance() {
synchronized (InputMethodManager.class) {
InputMethodManager imm = InputMethodManager.peekInstance();
if (imm == null) {
imm = new InputMethodManager(new BridgeIInputMethodManager(), Looper.getMainLooper());
InputMethodManager.sInstance = imm;
}
return imm;
}
}
use of com.android.layoutlib.bridge.android.BridgeIInputMethodManager in project android_frameworks_base by crdroidandroid.
the class InputMethodManager_Delegate method getInstance.
// ---- Overridden methods ----
@LayoutlibDelegate
static /*package*/
InputMethodManager getInstance() {
synchronized (InputMethodManager.class) {
InputMethodManager imm = InputMethodManager.peekInstance();
if (imm == null) {
imm = new InputMethodManager(new BridgeIInputMethodManager(), Looper.getMainLooper());
InputMethodManager.sInstance = imm;
}
return imm;
}
}
use of com.android.layoutlib.bridge.android.BridgeIInputMethodManager in project android_frameworks_base by DirtyUnicorns.
the class InputMethodManager_Delegate method getInstance.
// ---- Overridden methods ----
@LayoutlibDelegate
static /*package*/
InputMethodManager getInstance() {
synchronized (InputMethodManager.class) {
InputMethodManager imm = InputMethodManager.peekInstance();
if (imm == null) {
imm = new InputMethodManager(new BridgeIInputMethodManager(), Looper.getMainLooper());
InputMethodManager.sInstance = imm;
}
return imm;
}
}
Aggregations