我将通过data-sub='1'
更改状态栏颜色,但无法设置状态栏颜色。我不想通过编码设置状态栏的颜色,我只想通过/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
max-width: 280px;
}
。
Activity.xml
styles.xml
的Manifest.xml
theme/style
color.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="eazitouk.eazitoclient.mainclasses.TestActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
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="?attr/colorPrimary"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_test" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_email" />
</android.support.design.widget.CoordinatorLayout>
Style.xml
<application
android:name="eazitouk.eazitoclient.miscs.AppController"
android:icon="@drawable/ic_launchicon"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:name=".TestActivity"
android:label="@string/title_activity_test"
android:theme="@style/AppTheme1">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
这是我的style.xml和AppTheme适用于应用程序和AppTheme1申请我的活动但不能设置状态栏颜色
答案 0 :(得分:4)
我已经测试了你的代码。现在更改为此问题,style
中存在问题。所以按照我的方式获得输出。
Android manifest.xml。
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:screenOrientation="portrait"
android:theme="@style/AppTheme">
<activity
android:name=".TestActivity"
android:label="@string/title_activity_test"
android:theme="@style/AppTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<强> colors.xml 强>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="primaryColor">#EF6C00</color>
<color name="primaryColorDark">#E65100</color>
<color name="accentcolor">#0072BA</color>
</resources>
<强> styles.xml 强>
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/primaryColor</item>
<item name="colorPrimaryDark">@color/primaryColorDark</item>
<item name="colorAccent">@color/accentcolor</item>
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</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" />
</resources>
<强> styles.xml(V21)强>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:statusBarColor">@android:color/transparent</item>
</style>
</resources>
最后输出:
我更多的事情请记住,您已设置targetSdkVersion 23
。
答案 1 :(得分:1)
尝试在hexa代码中给出颜色。 ColorPrimaryDark
文件中的颜色color.xml
似乎不包含您想要的颜色。
尝试:
<style name="AppTheme1" parent="Theme.AppCompat.Light.NoActionBar">
...
<item name="colorPrimaryDark">#fad</item>
...
</style>
在#fad
答案 2 :(得分:0)
ColorPrimaryDark是状态栏颜色对应的颜色。
https://developer.android.com/training/material/theme.html
所以:
<item name="colorPrimaryDark">@color/ColorPrimaryDark</item>
使用名称ColorPrimaryDark
添加到colors.xml所需的颜色答案 3 :(得分:0)
对于更改状态栏颜色,您需要api级别19且大于21。 更多信息请查看此链接。 http://androidmysolution.blogspot.in/2015/12/change-status-bar-color-for-your.html