Android Layout: Показать представление под StatusBar - PullRequest
0 голосов
/ 11 октября 2018

Как лучше всего отобразить мою раскладку в строке состояния?

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/material_blue_grey_900">

    <Button 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Navigate"
        android:layout_centerHorizontal="true"
        app:MvxBind="Click GoToMainScreenCommand"/>

</RelativeLayout>

enter image description here

На скриншоте башни видно, чтоStatusBar перекрывает мою кнопку.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...