gpt4 book ai didi

android - 在我的自定义标题栏出现之前显示的默认标题栏

转载 作者:行者123 更新时间:2023-11-29 01:27:55 25 4
gpt4 key购买 nike

我正在开发一个 Android 应用程序,我需要使用一张图片和两个按钮来使用我的自定义标题栏。问题是,当我启动我的应用程序时,在我的自定义标题栏出现之前的 1 或 2 秒内,会显示一个丑陋的默认标题栏,其中显示“我的应用程序”。最小目标 API 为 15。

在 stack overflow 上找到的所有答案都没有用,或者成功地让它消失了,但对我的自定义标题栏做了同样的事情。

这是我在 Activity 中的称呼:

supportRequestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
super.onCreate(savedInstanceState);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,R.layout.topbarclassic);

因为我的第一个 View 是一个 fragment ,所以我没有调用 SetContentView

这是我的自定义 styles.xml:

<resources>

<style name="theme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowTitleSize">50dp</item>
<item name="android:windowNoTitle">false</item>
</style>

</resources>

我的自定义标题栏再次正常工作。我只需要摆脱应用程序启动时快速显示的默认设置。非常感谢!

最佳答案

如果您使用这种样式, Activity 将在没有操作栏的情况下加载

<style name="theme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>

那么您真的应该使用工具栏来设置操作栏。例如:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize" />

</RelativeLayout>

然后在您的 Activity 中,您可以像这样设置操作栏:

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(...);

Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
}

不要忘记在 AndroidManifest.xml 中设置它们

    <activity
android:name=".path.MyActivity"
android:theme="@style/theme"/>

关于android - 在我的自定义标题栏出现之前显示的默认标题栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32857069/

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