巨大的下巴出现在应用程序窗口的顶部
Posted
技术标签:
【中文标题】巨大的下巴出现在应用程序窗口的顶部【英文标题】:Huge chin appears on top of the application window 【发布时间】:2021-11-29 21:05:32 【问题描述】:我正在编辑 Sipdroid 并对 UI 进行更改,但此应用程序中的每个活动都有一个巨大的下巴,我似乎无法以任何方式隐藏它。看起来它被识别为状态栏,正如您从我在下面共享的代码中看到的那样,而且每当我更改状态栏颜色时,下巴也会变成该颜色。到目前为止,我发现它不在屏幕顶部创建填充的唯一方法是将<item name="android:windowTranslucentStatus">true</item>
添加到样式 XML。
以下是布局 XML 文件和 Kotlin 类的代码:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_
android:layout_>
<TextView
android:id="@+id/hello"
android:layout_
android:layout_
android:gravity="center"
android:text="Hello World"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
package org.sipdroid.sipua.ui
import android.app.Activity
import android.graphics.Rect
import android.os.Bundle
import android.view.View
import android.view.Window
import android.widget.TextView
import android.widget.Toast
import org.sipdroid.sipua.R
class TestActivity : Activity()
override fun onCreate(savedInstanceState: Bundle?)
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_test)
val btn = findViewById<TextView>(R.id.hello)
btn.setOnClickListener
// gets the status bar height
val rectangle = Rect()
window.decorView.getWindowVisibleDisplayFrame(rectangle)
val statusBarHeight = rectangle.top
val contentViewTop = window.findViewById<View>(Window.ID_ANDROID_CONTENT).top
val titleBarHeight = contentViewTop - statusBarHeight
// makes the TextView as high as the status bar,
// so we have a visual representation of the
// actual height with layout bounds visible
btn.height = statusBarHeight
Toast.makeText(
this@TestActivity,
"$statusBarHeight $titleBarHeight $rectangle.height()",
Toast.LENGTH_SHORT
).show()
These 是显示和不显示布局边界的屏幕截图。
【问题讨论】:
在setContentView()之前的onCreate中添加getActionBar().hide() 【参考方案1】:好的,所以我解决了这个乱七八糟的问题,结果我唯一需要做的就是从清单中删除以下代码:
<supports-screens
android:anyDensity="false"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true" />
【讨论】:
【参考方案2】:在setContentView()之前的onCreate方法中添加getActionBar().hide()
【讨论】:
以上是关于巨大的下巴出现在应用程序窗口的顶部的主要内容,如果未能解决你的问题,请参考以下文章