0

我正在尝试在我的应用程序中设置action barsstatus bar,但是遇到了问题。我确实让它工作了,但这不是一种干净的做事方式,所以我决定重新开始。

在启动活动中,我希望状态栏可见,我在整个应用程序中使用的粉红色背景(无操作栏)。在下一个视图中,我想要操作栏和状态栏。

这是我在启动活动中的内容:

<?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:paddingBottom="8dp"
    android:paddingLeft="8dp"
    android:paddingRight="8dp"
    android:paddingTop="8dp"
    tools:context="com.andrewnwalker.mousetimes_california.ParkSelectActivity">

    <LinearLayout
        ...>

        <TextView
            .../>

        <TextView
            .../>

        <Button
            .../>

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

这就是我在第二个活动中的内容:

<?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.andrewnwalker.mousetimes_california.MainActivity">

    <android.support.v7.widget.ActionBarContainer
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary" />

    <include layout="@layout/content_main"/>
</android.support.design.widget.CoordinatorLayout>

在内容主要:

<?xml version="1.0" encoding="utf-8"?>
<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"
    tools:context="com.andrewnwalker.mousetimes_california.MainActivity"
    tools:showIn="@layout/activity_main">

    <android.support.v4.widget.SwipeRefreshLayout
        ...>

        <android.support.v7.widget.RecyclerView
            ..../>
    </android.support.v4.widget.SwipeRefreshLayout>
</RelativeLayout>

最后是样式:

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
    <item name="android:typeface">serif</item>
</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" />

这可能有点乱,但我对样式和操作栏的设置感到很困惑。任何人都可以建议我可以做出的改变来做我正在寻找的东西吗?

目前第一个活动显示状态栏文本,但没有背景颜色,第二个活动显示状态栏和操作栏,但它还包含一个我不想要的菜单项。

谢谢!

4

1 回答 1

0

符合材料设计的状态栏颜色由应用程序的主题驱动。您可以阅读有关此的官方文档,因为这里没有足够的信息来确定发生了什么。您可能会在清单中的第一个活动上覆盖应用程序主题,或者在活动中以某种方式更改它。第一个活动确实有一个特殊的布局。如果您没有操作栏,则无需在此处使用 CoordinatorLayout。如果您只需要滚动内部 LinearLayout,只需使用 ScrollView 即可。

要删除操作栏菜单,请确保您没有在 onCreateOptionsMenu 中返回菜单或修改 onPrepareOptionsMenu 中的任何内容。如果不需要,请删除这些方法。

于 2016-02-09T03:42:44.240 回答