gpt4 book ai didi

java - ActionBarSherlock操作栏不会隐藏在对话框中

转载 作者:行者123 更新时间:2023-12-01 13:44:47 25 4
gpt4 key购买 nike

我正在加载一个已实现 ActionBarSherlock 的 Activity 。当 Activity 开始加载时,我会显示一个包含以下 xml 的启动屏幕:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/splash"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:theme="@style/Theme.Sherlock.Light.NoActionBar">

<ImageView
android:id="@+id/logo"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:src="@drawable/splashlogo" />

</RelativeLayout>

在加载启动屏幕之前我调用

getSupportActionBar().hide();

我什至尝试过:

getSupportActionBar().setDisplayShowHomeEnabled(false);
getSupportActionBar().setDisplayShowTitleEnabled(false);

但无论我做什么,我总是会在启动屏幕上看到以下内容:

enter image description here

有什么我需要添加的或者我做错了吗?

最佳答案

在启动屏幕中的 dialog.setcontentView 行之前写入

  dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);

关于java - ActionBarSherlock操作栏不会隐藏在对话框中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20438913/

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