android横竖屏切换不重启activity解决方案
程序员文章站
2023-12-05 17:45:58
部分网友会发现activity在切换到后台或布局从横屏landscape切换到portrait,会重新切换activity会触发一次oncreate方法,我们可以在andr...
部分网友会发现activity在切换到后台或布局从横屏landscape切换到portrait,会重新切换activity会触发一次oncreate方法,我们可以在androidmanifest.xml中的activit元素加入这个属性android:configchanges="orientation|keyboardhidden" 即可,比如
<activity android:name=".android123" android:configchanges="orientation|keyboardhidden" android:label="@string/app_name">
java代码
/* 声明display对象,以取得屏幕宽高 */
final display defaultdisplay = getwindow().getwindowmanager()
.getdefaultdisplay();
intscreenh = defaultdisplay.getheight();
intscreenw = defaultdisplay.getwidth();
/* 如果为landscape */
if (intscreenw > intscreenh)
{
/* landscape => portrait */
setrequestedorientation(activityinfo.screen_orientation_portrait);
} else
{
/* portrait => landscape */
setrequestedorientation(activityinfo.screen_orientation_landscape);
}
/* 声明display对象,以取得屏幕宽高 */
final display defaultdisplay = getwindow().getwindowmanager()
.getdefaultdisplay();
intscreenh = defaultdisplay.getheight();
intscreenw = defaultdisplay.getwidth();
/* 如果为landscape */
if (intscreenw > intscreenh)
{
/* landscape => portrait */
setrequestedorientation(activityinfo.screen_orientation_portrait);
} else
{
/* portrait => landscape */
setrequestedorientation(activityinfo.screen_orientation_landscape);
}
同时在activity的java文件中重载onconfigurationchanged(configuration newconfig)这个方法,这样就不会在布局切换或窗口切换时重载oncreate等方法。代码如下:
java代码
@override
public void onconfigurationchanged(configuration newconfig)
{
super.onconfigurationchanged(newconfig);
if (this.getresources().getconfiguration().orientation == configuration.orientation_landscape)
{
//land
}
else if (this.getresources().getconfiguration().orientation == configuration.orientation_portrait)
{
//port
}
}
@override
public void onconfigurationchanged(configuration newconfig)
{
super.onconfigurationchanged(newconfig);
if (this.getresources().getconfiguration().orientation == configuration.orientation_landscape)
{
//land
}
else if (this.getresources().getconfiguration().orientation == configuration.orientation_portrait)
{
//port
}
}
<activity android:name=".android123" android:configchanges="orientation|keyboardhidden" android:label="@string/app_name">
java代码
复制代码 代码如下:
/* 声明display对象,以取得屏幕宽高 */
final display defaultdisplay = getwindow().getwindowmanager()
.getdefaultdisplay();
intscreenh = defaultdisplay.getheight();
intscreenw = defaultdisplay.getwidth();
/* 如果为landscape */
if (intscreenw > intscreenh)
{
/* landscape => portrait */
setrequestedorientation(activityinfo.screen_orientation_portrait);
} else
{
/* portrait => landscape */
setrequestedorientation(activityinfo.screen_orientation_landscape);
}
/* 声明display对象,以取得屏幕宽高 */
final display defaultdisplay = getwindow().getwindowmanager()
.getdefaultdisplay();
intscreenh = defaultdisplay.getheight();
intscreenw = defaultdisplay.getwidth();
/* 如果为landscape */
if (intscreenw > intscreenh)
{
/* landscape => portrait */
setrequestedorientation(activityinfo.screen_orientation_portrait);
} else
{
/* portrait => landscape */
setrequestedorientation(activityinfo.screen_orientation_landscape);
}
同时在activity的java文件中重载onconfigurationchanged(configuration newconfig)这个方法,这样就不会在布局切换或窗口切换时重载oncreate等方法。代码如下:
java代码
复制代码 代码如下:
@override
public void onconfigurationchanged(configuration newconfig)
{
super.onconfigurationchanged(newconfig);
if (this.getresources().getconfiguration().orientation == configuration.orientation_landscape)
{
//land
}
else if (this.getresources().getconfiguration().orientation == configuration.orientation_portrait)
{
//port
}
}
@override
public void onconfigurationchanged(configuration newconfig)
{
super.onconfigurationchanged(newconfig);
if (this.getresources().getconfiguration().orientation == configuration.orientation_landscape)
{
//land
}
else if (this.getresources().getconfiguration().orientation == configuration.orientation_portrait)
{
//port
}
}
推荐阅读
-
android横竖屏切换不重启activity解决方案
-
Android编程实现横竖屏切换时不销毁当前activity和锁定屏幕的方法
-
android中Activity横竖屏切换的那些事
-
android横竖屏切换时候Activity的生命周期
-
android中Activity横竖屏切换的那些事
-
Android开发使用Activity嵌套多个Fragment实现横竖屏切换功能的方法
-
Android纠正Activity横竖屏切换的生命周期的错误
-
Android纠正Activity横竖屏切换的生命周期的错误
-
Android Activity 横竖屏切换的生命周期
-
Android Activity 横竖屏切换的生命周期