Methods Summary |
---|
public static android.view.FallbackEventHandler | makeNewFallbackEventHandler(android.content.Context context)
return new FallbackEventHandler() {
@Override
public void setView(View v) {
}
@Override
public void preDispatchKeyEvent(KeyEvent event) {
}
@Override
public boolean dispatchKeyEvent(KeyEvent event) {
return false;
}
};
|
public static android.view.LayoutInflater | makeNewLayoutInflater(android.content.Context context)
return new BridgeInflater(context, RenderAction.getCurrentContext().getProjectCallback());
|
public static android.view.Window | makeNewWindow(android.content.Context context)
// this will likely crash somewhere beyond so we log it.
Bridge.getLog().error(LayoutLog.TAG_UNSUPPORTED,
"Call to PolicyManager.makeNewWindow is not supported", null);
return null;
|
public static android.view.WindowManagerPolicy | makeNewWindowManager()
// this will likely crash somewhere beyond so we log it.
Bridge.getLog().error(LayoutLog.TAG_UNSUPPORTED,
"Call to PolicyManager.makeNewWindowManager is not supported", null);
return null;
|