Android:工具栏和状态栏配置问题

时间:2019-01-05 04:12:46

标签: xml android-layout label toolbar android-statusbar

我的应用程序存在一些问题,特别是工具栏和状态栏的行为异常。我希望我的工具栏和状态栏具有相同的颜色以无缝融合。另外,我希望活动标题显示在所有活动的标签上。对于某些活动,这很好。例如,主要活动: enter image description here

但是,除“主要活动”之外的所有活动均拒绝显示“标签”,只有“主要活动”和“代表活动”显示正确的颜色配置。例如,“代表”工具栏具有正确的颜色组合,但没有标签。 enter image description here

其他活动都没有正确的颜色组合或标签,例如“单一代表活动”

enter image description here

这是我的Android清单

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.example.gabe.politicianspulse">

<uses-permission android:name="android.permission.INTERNET" />

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme"
    tools:ignore="GoogleAppIndexingWarning">

    <activity
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:theme="@style/AppTheme.NoActionBar">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <activity
        android:name=".VoterInformation"
        android:label="@string/title_activity_voter_information"
        android:theme="@style/AppTheme.NoActionBar" />

    <activity
        android:name=".Representatives"
        android:label="Representatives"
        android:theme="@style/AppTheme.NoActionBar" />

    <activity android:name=".SingleRepresentative"
        android:label="@string/title_activity_single_representative"
        android:theme="@style/AppTheme.NoActionBar"
        />

    <activity android:name=".Elections"
        android:label="@string/elections"
        android:theme="@style/AppTheme.NoActionBar"
        />

    <activity android:name=".SingleElection"
        tools:ignore="ExtraText"
        android:label="@string/elections"
        android:theme="@style/AppTheme.NoActionBar"
       >


    </activity>

</application>

工具栏代码:

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

<android.support.v7.widget.Toolbar
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/colorPrimaryDark"
    android:id="@+id/toolbar"
    app:titleTextColor="#ffffff">

</android.support.v7.widget.Toolbar>

colors.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="colorPrimary">#ffffff</color>
    <color name="colorPrimaryDark">#2F3C4B</color>
    <color name="colorAccent">#CC4848</color>
</resources>

我可以根据要求提供任何活动中的任何Java或XML代码。谢谢您的帮助! -Gabe

1 个答案:

答案 0 :(得分:0)

可能缺少一些代码。试试这个:

在包含工具栏的所有活动的AUTOINCREMENT内,添加以下代码:

onCreate