本文整理了Java中android.app.Activity.onWindowAttributesChanged()
方法的一些代码示例,展示了Activity.onWindowAttributesChanged()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Activity.onWindowAttributesChanged()
方法的具体详情如下:
包路径:android.app.Activity
类名称:Activity
方法名:onWindowAttributesChanged
暂无
代码示例来源:origin: com.uphyca/android-junit4-robolectric
/**
* @param params
* @see android.app.Activity#onWindowAttributesChanged(android.view.WindowManager.LayoutParams)
*/
public void onWindowAttributesChanged(android.view.WindowManager.LayoutParams params) {
mActivity.onWindowAttributesChanged(params);
}
代码示例来源:origin: shazam/android-aspects
@Override
public void onWindowAttributesChanged(WindowManager.LayoutParams params) {
super.onWindowAttributesChanged(params);
dispatcher.dispatchOnWindowAttributesChanged(this, params);
}
代码示例来源:origin: ELynx/pokemon-go-xposed-mitm
public void onWindowAttributesChanged(android.view.WindowManager.LayoutParams params) {
if (ScriptLoader.isCalledFromJRuby()) {super.onWindowAttributesChanged(params); return;}
if (!JRubyAdapter.isInitialized()) {
Log.i("Method called before JRuby runtime was initialized: RubotoActivity#onWindowAttributesChanged");
{super.onWindowAttributesChanged(params); return;}
}
String rubyClassName = scriptInfo.getRubyClassName();
if (rubyClassName == null) {super.onWindowAttributesChanged(params); return;}
if ((Boolean)JRubyAdapter.runScriptlet(rubyClassName + ".instance_methods(false).any?{|m| m.to_sym == :onWindowAttributesChanged}")) {
JRubyAdapter.runRubyMethod(scriptInfo.getRubyInstance(), "onWindowAttributesChanged", params);
} else {
if ((Boolean)JRubyAdapter.runScriptlet(rubyClassName + ".instance_methods(false).any?{|m| m.to_sym == :on_window_attributes_changed}")) {
JRubyAdapter.runRubyMethod(scriptInfo.getRubyInstance(), "on_window_attributes_changed", params);
} else {
if ((Boolean)JRubyAdapter.runScriptlet(rubyClassName + ".instance_methods(true).any?{|m| m.to_sym == :on_window_attributes_changed}")) {
JRubyAdapter.runRubyMethod(scriptInfo.getRubyInstance(), "on_window_attributes_changed", params);
} else {
JRubyAdapter.runRubyMethod(scriptInfo.getRubyInstance(), "onWindowAttributesChanged", params);
}
}
}
}
内容来源于网络,如有侵权,请联系作者删除!