gpt4 book ai didi

android - 如何防止操作栏被切断?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:35:28 24 4
gpt4 key购买 nike

在我将手机升级到 Marshmallow 后,我制作的所有应用的操作栏都被切断了。该应用在 Lollipop 和 Kitkat 上运行良好。

该应用程序基本上只有一个 View ,并且在我更新的手机上无法正常显示。

Top half cut off
activity_main.xml

<android.support.design.widget.CoordinatorLayout 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="com.shalin.clickme.MainActivity">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />

</android.support.design.widget.AppBarLayout>

<include layout="@layout/content_main" />

<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_email" />

</android.support.design.widget.CoordinatorLayout>


content_main.xml

<RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.shalin.clickme.MainActivity">

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click Me"
android:onClick="switchButtons"
android:id="@+id/button1"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true" />

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button2"
android:text=""
android:onClick="switchButtons"
android:layout_alignBottom="@+id/button1"
android:layout_alignParentEnd="true" />
</RelativeLayout>

编辑:我尝试了 android:fitsSystemWindows,这就是我得到的: With android:fitsSystemWindows

最佳答案

Use android:fitsSystemWindows="true" in the root view of your layout.

android:fitsSystemWindows 是内部属性根据状态栏等系统窗口调整 View 布局。如果为 true,则调整此 View 的填充以为系统窗口留出空间。仅当此 View 在非嵌入式 Activity 中时才会生效。

and also you can set it globally by setting in the style.xml theme as

<item name="android:fitsSystemWindows">true</item>

关于android - 如何防止操作栏被切断?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36530906/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com