我有操作栏和按钮,我为操作栏设置了与按钮相同的颜色。但是当我运行我的应用程序时,我的按钮颜色比动作条的颜色更暗。有人能告诉我如何解决它吗?
我的操作代码:
ActionBar ab = getSupportActionBar();
ab.setLogo(R.mipmap.ic_launcher);
getSupportActionBar().setDisplayUseLogoEnabled(true);
getSupportActionBar().setDisplayShowHomeEnabled(true);
ab.setBackgroundDrawable(new ColorDrawable(Color.parseColor("#00B2EE")));
按钮:
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New button"
android:id="@+id/button"
android:background="#00B2EE"/>
我的styles.xml:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
</resources>