gpt4 book ai didi

java - 为什么 Android Studio 总是在应用程序设计中显示 ActionBar,即使在禁用时也是如此?

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:59:50 25 4
gpt4 key购买 nike

我在新的 Android Studio 1.4 中有一个应用程序(尽管这个问题也出现在 1.3.2 中)并且由于扩展功能我决定使用工具栏而不是操作栏。

我相应地设置了 xml 和 java 以隐藏 actionbar,编译时它不存在,而是工具栏位于 ActionBar 出现的顶部。但是在设计 View 中我仍然看到它并且无法删除它。这让我很困扰,因为它隐藏了一些设计区域,而且我没有足够的空间容纳所有元素。

如何在 Android Studio 设计中删除 ActionBar (1) 并将其替换为工具栏 (2),以便 (3) 具有全高。

Android Stdui XML design

这是我的 xml 和 java 文件,看起来很多,但它们是 90% 的默认值。我在派生自 Theme.AppCompat.Light.DarkActionBar 的 styles.xml 中设置 AppTheme 主题,并在 list 中告诉编译器将 AppTheme.NoActionBar 用于 Activity 主题。

activity_unlock.xml

<?xml version="1.0" encoding="utf-8"?>
<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.example.testapp.UnlockActivity">

<android.support.design.widget.AppBarLayout android:layout_height="wrap_content"
android:layout_width="match_parent" 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="@android:color/white" app:popupTheme="@style/AppTheme.PopupOverlay" />

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

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


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

content_unlock.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/activity_unlock" tools:context="com.example.testapp.UnlockActivity">

</RelativeLayout>

UnlockActivity.java

package com.example.testapp;

import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.View;

public class UnlockActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_unlock);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
}

}

Android list

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.testapp">

<application>
<activity android:name="com.example.testapp.UnlockActivity"
android:label="@string/title_activity_unlock"
android:theme="@style/AppTheme.NoActionBar"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>

styles.xml

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="android:windowNoTitle">true</item>
<!--We will be using the toolbar so no need to show ActionBar-->
<item name="android:windowActionBar">false</item>
<!-- Set theme colors from http://www.google.com/design/spec/style/color.html#color-color-palette-->

</style>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

</resources>

最佳答案

由于您可以使用任何样式以多种方式实例化布局,因此您可以通过单击图中所示的按钮来查看布局在不同样式下的外观。如果您没有在代码中设置其他样式或主题,那么将使用 list 中的主题。

enter image description here

关于java - 为什么 Android Studio 总是在应用程序设计中显示 ActionBar,即使在禁用时也是如此?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32909364/

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