欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android基础之隐藏标题栏/设置为全屏/横竖屏切换

程序员文章站 2022-06-17 23:46:20
目录隐藏标题栏设置为全屏横竖屏切换屏幕旋转方式动态设置屏幕方向设置横竖屏切换总结隐藏标题栏基于xml

隐藏标题栏

基于xml

<application
    android:theme="@style/theme.appcompat.light.noactionbar">

动态隐藏

//继承自activity时使用
requestwindowfeature(window.feature_no_title);
 
//继承自appcompatactivity时使用
getsupportactionbar().hide();

设置为全屏

xml

android:theme="@android:style/theme.notitlebar.fullscreen" 
或者 
android:theme="@android:style/theme.black.notitlebar.fullscreen"

动态设置

requestwindowfeature(window.feature_no_title);
 
getwindow().setflags(windowmanager.layoutparams.flag_fullscreen,
                windowmanager.layoutparams.flag_fullscreen);

横竖屏切换

屏幕旋转方式

androidmanifest.xml

android:screenorientation=""

当参数为sensor时,无论是否关闭“屏幕旋转”设置,app内的特定activity都会根据重力传感器改变横竖屏。

Android基础之隐藏标题栏/设置为全屏/横竖屏切换

动态设置

setrequestedorientation(@activityinfo.screenorientationint requestedorientation);

动态设置屏幕方向

/**
* the preferred screen orientation this activity would like to run in.
* from the {@link android.r.attr#screenorientation} attribute, one of
* {@link #screen_orientation_unspecified},
* {@link #screen_orientation_landscape},
* {@link #screen_orientation_portrait},
* {@link #screen_orientation_user},
* {@link #screen_orientation_behind},
* {@link #screen_orientation_sensor},
* {@link #screen_orientation_nosensor},
* {@link #screen_orientation_sensor_landscape},
* {@link #screen_orientation_sensor_portrait},
* {@link #screen_orientation_reverse_landscape},
* {@link #screen_orientation_reverse_portrait},
* {@link #screen_orientation_full_sensor},
* {@link #screen_orientation_user_landscape},
* {@link #screen_orientation_user_portrait},
* {@link #screen_orientation_full_user},
* {@link #screen_orientation_locked},
*/

设置横竖屏切换

不想activity被销毁重建需要静态设置

android:configchanges="orientation|keyboardhidden|screensize"

andorid 3.2以前的sdk可以使用如下配置

android:configchanges="orientation|keyboardhidden"

adnroid 3.2以后的sdk必须添加一个screensize属性,具体如下

android:configchanges="keyboardhidden|orientation|screensize"

或者

android:configchanges="orientation|screensize"

Android基础之隐藏标题栏/设置为全屏/横竖屏切换

重写onconfigurationchanged方法

@override 
public void onconfigurationchanged(configuration newconfig) { 
  	super.onconfigurationchanged(newconfig); 
  	if (this.getresources().getconfiguration().orientation == configuration.orientation_landscape) {
    		// land do nothing is ok
    		toast.maketext(mainactivity.this,"现在是横屏", toast.length_short).show();
  	} else if (this.getresources().getconfiguration().orientation == configuration.orientation_portrait) {
    		// port do nothing is ok
    		toast.maketext(mainactivity.this,"现在是竖屏",toast.length_short).show();;
  	}
}

重写该方法,横竖屏切换不会重走生命周期,你可以在里面编写一些代码用来适配切换后的屏幕,你也可以直接在该方法中调用setcontentview()来适配新的view

如若不在manifest里面配置,activity会走onsaveinstancestate,用来保存数据,而后重走生命周期,重新加载布局文件,因此这里可以编写多个资源文件用来适配不同屏幕尺寸

多屏幕适配

在页面布局横竖屏差异较大的情况下,可以通过重走生命周期,销毁前进行数据保存,屏幕适配来达到要求

创建不同的values文件夹,根据横竖屏切换监听调用

values(默认调用该布局)

values-sw405dp(通过分辨率来进行调用)

values-land(横屏时调用)

values-v19/style.xml————对应api19+手机型号在此调用。 

values-v21/style.xml————对应api21+手机型号在此调用。 

values/style.xml————对应values-v19和values-v21的style.xml中没有对应主题时默认在此调用。

总结

若是比较小的改动,可以尝试在onconfigurechange方法里面进行局部的改变,不需要重走生命周期

如果是较大改动,建议通过多资源文件来进行适配,在onsaveinstancestate将重要数据进行保存

到此这篇关于android基础之隐藏标题栏/设置为全屏/横竖屏切换的文章就介绍到这了,更多相关android隐藏标题栏内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!