Android 中是否有类似 onrotate() 的方法或具有类似功能的方法?
我调用基于布尔值的方法。我尝试在 onRetainNonConfigurationInstance() 中设置该值来处理屏幕旋转,但不知何故它无法正确调用该函数。允许我这样做的最佳调用方法是什么:
public void methodName() //ideally something like onRotate()
{
if (booleanValue == true)
{
booleanValue2 = false;
method1();
}
else
{
booleanValue2 = true;
method2();
}
}
这里
I call a method based on a boolean value. I try setting that value in onRetainNonConfigurationInstance() to handle screen rotation but somehow it does not call the function correctly. What is the best method to call that will allow me to this:
public void methodName() //ideally something like onRotate()
{
if (booleanValue == true)
{
booleanValue2 = false;
method1();
}
else
{
booleanValue2 = true;
method2();
}
}
here
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您正在寻找这个: http://developer.android.com/reference /android/view/OrientationListener.html
onOrientationChanged(int)
Maybe you're looking for this: http://developer.android.com/reference/android/view/OrientationListener.html
onOrientationChanged(int)