zoukankan      html  css  js  c++  java
  • Android支持全面屏设置

    在AndroidManifest的application里面设置resizeableActivity的属性为true

     <application
            android:name=".CompleteCarSellApplication"
            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:supportsRtl="true"
            android:theme="@style/AppTheme"
            android:resizeableActivity="true">
    

    对于Android 8(API级别26)以上,只需要布局时填充屏幕即可
    对于Android 7.1(API级别25)以下,系统默认将应用显示的大小限制为一个长宽比为16:9(约1.86)的窗口。如果这个应用在屏幕比大的手机上运行,会出现一部分屏幕是黑屏的情况,这时我们就需要声明最大屏幕纵横比了。

    <application
            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:roundIcon="@mipmap/ic_launcher_round"
            android:supportsRtl="true"
            android:resizeableActivity="false"
            android:theme="@style/AppTheme">
    
            <meta-data
                android:name="android.max_aspect"
                android:value="2.4" />
    
            <activity android:name=".MainActivity">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
    
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
    </application>
    
  • 相关阅读:
    个人网站第一期完成
    nodebb在阿里云主机部署过程
    mongoengine教程1
    quick cocos 的scheduler 定时器
    cocos2dx调度器scheduler
    Cocos2d-x中Vector使用
    Google分布式系统三驾马车: GFS,mapreduce,Bigtable
    Linux使用记
    Eclipse快捷键总结
    详解iOS App生命周期(转)
  • 原文地址:https://www.cnblogs.com/hualuoshuijia/p/9951330.html
Copyright © 2011-2022 走看看