我是靠谱客的博主 俊逸绿草,最近开发中收集的这篇文章主要介绍沉浸式,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.创建一个values-v19的文件夹

建一个Style.xml写一下代码

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="android:windowTranslucentStatus">true</item>
    </style>

会是这个样子的
2.Application,全局初始化变量
在这里插入图片描述

//绘制页面时参照的设计图宽度
    public final static float DESIGN_WIDTH = 750;
@Override
    public void onConfigurationChanged(Configuration newConfig) {
        super.onConfigurationChanged(newConfig);
        resetDensity();
    }

    public void resetDensity(){
        Point size = new Point();
        ((WindowManager)getSystemService(WINDOW_SERVICE)).getDefaultDisplay().getSize(size);
        getResources().getDisplayMetrics().xdpi = size.x/DESIGN_WIDTH*72f;
    }

主布局中加入

android:fitsSystemWindows="true"

这个样子
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:fitsSystemWindows="true"//在这里----------- tools:context=".MainActivity">

最后

以上就是俊逸绿草为你收集整理的沉浸式的全部内容,希望文章能够帮你解决沉浸式所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部