最近在做平板项目,需要用到横屏切换,现在把属性贴出来方便以后查看。

通常我们的应用只会设计成横屏或者竖屏,锁定横屏或竖屏的方法是在manifest.xml文件中设定属性android:screenOrientation为”landscape”或”portrait”:

    <activity        android:name="com.jooylife.jimei_tablet.base.Main"        android:label="@string/app_name"         android:screenOrientation="landscape">        <intent-filter>            <action android:name="android.intent.action.MAIN" />            <category android:name="android.intent.category.LAUNCHER" />        </intent-filter>    </activity>

其实screenOrientation还可以设置成很多值:

android:screenOrientation=["unspecified" | "behind" |"landscape" | "portrait"|"reverseLandscape"|"reversePortrait" |"sensorLandscape" | "sensorPortrait" |"userLandscape" | "userPortrait" |"sensor" | "fullSensor" | "nosensor" |"user" | "fullUser" | "locked"]

其中sensorLandscape就是横屏根据重力切换,sensorPortrait竖屏根据重力切换。

播放视频全屏切换:
1.Demo:

@Override
protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if(this.getResources().getConfiguration().orientation==Configuration.ORIENTATION_LANDSCAPE) {
getWindow().getDecorView().setSystemUiVisibility(View.INVISIBLE);
}else if (this.getResources().getConfiguration().orientation==Configuration.ORIENTATION_PORTRAIT) {
// this.requestWindowFeature(Window.f);// 去掉标题栏
// this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
// WindowManager.LayoutParams.FLAG_FULLSCREEN);// 去掉信息栏
Log.i(“info”, “portrait”); // 竖屏

}

View类提供了setSystemUiVisibility和getSystemUiVisibility方法,这两个方法实现对状态栏的动态显示或隐藏的操作,以及获取状态栏当前可见性。

setSystemUiVisibility(int visibility)方法可传入的实参为:

1. View.SYSTEM_UI_FLAG_VISIBLE:显示状态栏,Activity不全屏显示(恢复到有状态的正常情况)。2. View.INVISIBLE:隐藏状态栏,同时Activity会伸展全屏显示。3. View.SYSTEM_UI_FLAG_FULLSCREEN:Activity全屏显示,且状态栏被隐藏覆盖掉。4. View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN:Activity全屏显示,但状态栏不会被隐藏覆盖,状态栏依然可见,Activity顶端布局部分会被状态遮住。5. View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION:效果同View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN6. View.SYSTEM_UI_LAYOUT_FLAGS:效果同View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN7. View.SYSTEM_UI_FLAG_HIDE_NAVIGATION:隐藏虚拟按键(导航栏)。有些手机会用虚拟按键来代替物理按键。8. View.SYSTEM_UI_FLAG_LOW_PROFILE:状态栏显示处于低能显示状态(low profile模式),状态栏上一些图标显示会被隐藏。

2.

if (this.getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE) {        WindowManager.LayoutParams attrs = getWindow().getAttributes();        attrs.flags |= WindowManager.LayoutParams.FLAG_FULLSCREEN;        getWindow().setAttributes(attrs);        getWindow().addFlags(                WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);    } else if (this.getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {        WindowManager.LayoutParams attrs = getWindow().getAttributes();        attrs.flags &= (~WindowManager.LayoutParams.FLAG_FULLSCREEN);        getWindow().setAttributes(attrs);        getWindow().clearFlags(                WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);    }

更多相关文章

  1. 【阿里云镜像】切换阿里巴巴开源镜像站镜像——Fedora镜像
  2. 【阿里云镜像】切换阿里巴巴开源镜像站镜像——Debian镜像
  3. Android之TextView
  4. [Android]应用语言切换的三种方法
  5. 切换Activity时的动画overridePendingTransition(A,B)解析
  6. 详解android:scaleType属性
  7. Android(安卓)menu
  8. Android禁止横屏竖屏切换
  9. android 横竖屏

随机推荐

  1. 关于foreach循环的实例用法汇总
  2. 服务框架的10篇内容推荐
  3. 右值引用如何使用?总结右值引用实例用法
  4. 异常设计函数定义与用法汇总
  5. 有关装箱的文章推荐10篇
  6. 有关经典实例的文章推荐10篇
  7. 详细介绍MvcPager分页控件使用的实例方法
  8. .NET应用函数定义与用法汇总
  9. SignalR实现实时Web聊天的实例代码
  10. 关于SmtpClient的10篇文章推荐