Blogger Information
Blog 7
fans 0
comment 2
visits 28065
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Android activity之横屏全屏设置
Huan的博客
Original
5872 people have browsed it

Android设置activity横屏全屏的方法

开发环境:Android Studio2.2.3版本

Android版本:5.1,min4.0

1.强制横屏

修改Mainfest.xml文件中的activity标签,修改成下面这样:

<activity
    android:name=".MainActivity"
    android:configChanges="orientation|keyboard"
    android:screenOrientation="landscape">

landscapes:横屏;    

2.全屏/去掉标题栏

修改Mainfest.xml文件中的application标签

android:theme="@style/Theme.AppCompat.NoActionBar"

Android版本较多,可能出现不全屏的现象,尝试更换其他带“NoActionBar”的theme即可,总有一款适合,

另外也有一些在java代码中修改的方法,相比这样,代码容易混乱,修改主题可以表现和内容分离,便于管理。

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
1 comments
huan 2017-08-02 20:26:04
great!
1 floor
Author's latest blog post