隐藏状态栏,toolbar前面空格问题

Posted 红领巾传递人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了隐藏状态栏,toolbar前面空格问题相关的知识,希望对你有一定的参考价值。

EditText圆角:

一、在drawable下面添加xml文件rounded_editview.xml


复制代码 代码如下:


<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="#FFFFFF"></solid>
    <padding android:left="10dp"
        android:top="10dp"
        android:right="10dp"
        android:bottom="10dp"></padding>
    <corners android:radius="15dp"></corners>
</shape>

二、在EditText的background属性中引用这个xml


复制代码 代码如下:


<EditText
        android:id="@+id/et_username"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:inputType="text"
        android:background="@drawable/rounded_editview"
        android:hint="@string/text_hint_username"/>







toolbar左边空格问题
在xml中添加如下代码:

<android.support.v7.widget.Toolbar
android:background="@drawable/bg"
android:layout_width="match_parent"
android:layout_height="56dp"
android:fitsSystemWindows="true"
app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"
>
 


沉浸式状态栏:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
            getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
            getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
        }



隐藏:

this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

以上是关于隐藏状态栏,toolbar前面空格问题的主要内容,如果未能解决你的问题,请参考以下文章

半透明/透明状态栏 + CoordinatorLayout + Toolbar + Fragment

android中状态栏怎么布局

html5隐藏手机浏览器工具栏

iOS:状态栏和导航栏:空格或底层

滚动时隐藏导航栏而不隐藏状态栏及其背景

隐藏导航栏时隐藏状态栏 - SWIFT iOS8