android.app.Activity.onUserLeaveHint()方法的使用及代码示例

x33g5p2x  于2022-01-15 转载在 其他  
字(2.0k)|赞(0)|评价(0)|浏览(242)

本文整理了Java中android.app.Activity.onUserLeaveHint()方法的一些代码示例,展示了Activity.onUserLeaveHint()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Activity.onUserLeaveHint()方法的具体详情如下:
包路径:android.app.Activity
类名称:Activity
方法名:onUserLeaveHint

Activity.onUserLeaveHint介绍

暂无

代码示例

代码示例来源:origin: robolectric/robolectric

@Override
protected void onUserLeaveHint() {
 super.onUserLeaveHint();
 transcribeWhilePaused("onUserLeaveHint");
 transcript.add("finishedOnUserLeaveHint");
}

代码示例来源:origin: huxq17/FloatBall

@Override
protected void onUserLeaveHint() {
  super.onUserLeaveHint();
}

代码示例来源:origin: shazam/android-aspects

@Override
protected void onUserLeaveHint() {
  super.onUserLeaveHint();
  dispatcher.dispatchOnUserLeaveHint(this);
}

代码示例来源:origin: trikita/talalarmo

@Override
protected void onUserLeaveHint() {
  stopAlarm();
  super.onUserLeaveHint();
}

代码示例来源:origin: ELynx/pokemon-go-xposed-mitm

public void onUserLeaveHint() {
 if (ScriptLoader.isCalledFromJRuby()) {super.onUserLeaveHint(); return;}
 if (!JRubyAdapter.isInitialized()) {
  Log.i("Method called before JRuby runtime was initialized: RubotoActivity#onUserLeaveHint");
  {super.onUserLeaveHint(); return;}
 }
 String rubyClassName = scriptInfo.getRubyClassName();
 if (rubyClassName == null) {super.onUserLeaveHint(); return;}
 if ((Boolean)JRubyAdapter.runScriptlet(rubyClassName + ".instance_methods(false).any?{|m| m.to_sym == :onUserLeaveHint}")) {
  JRubyAdapter.runRubyMethod(scriptInfo.getRubyInstance(), "onUserLeaveHint");
 } else {
  if ((Boolean)JRubyAdapter.runScriptlet(rubyClassName + ".instance_methods(false).any?{|m| m.to_sym == :on_user_leave_hint}")) {
   JRubyAdapter.runRubyMethod(scriptInfo.getRubyInstance(), "on_user_leave_hint");
  } else {
   if ((Boolean)JRubyAdapter.runScriptlet(rubyClassName + ".instance_methods(true).any?{|m| m.to_sym == :on_user_leave_hint}")) {
    JRubyAdapter.runRubyMethod(scriptInfo.getRubyInstance(), "on_user_leave_hint");
   } else {
    JRubyAdapter.runRubyMethod(scriptInfo.getRubyInstance(), "onUserLeaveHint");
   }
  }
 }
}

相关文章

Activity类方法