- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个使用 DrawerLayout
的 Activity 。我们的客户要求我们根据从 DrawerLayout
中选择的项目动态更改此 Activity 的操作栏颜色和相应的状态栏颜色。这很容易做到。但是,我的问题是,当我动态更改状态栏颜色时,我无法保持状态栏透明。当我打开抽屉时,彩色状态栏覆盖了 DrawerLayout
的顶部,如下所示:
但是,我希望我的 DrawerLayout
看起来像这样:
我可以用下面一行来做到这一点:
<item name="android:windowTranslucentStatus">true</item>
不过,我的问题不是不能设置状态栏的透明度。我的问题是状态栏和操作栏颜色的动态变化不适用于 windowTranslucentStatus
。即使在我调用 getWindow().setStatusBarColor()
之后,我的状态栏颜色仍然是 colorPrimaryDark
(上图中状态栏上可见的芥末黄色)。
现在,我关注了this教程和this和 this stackoverflow 问题等等,但无法解决问题。所有这些文章都说,当我将 windowTranslucentStatus
设置为 真
。之后,我应该能够向操作栏添加一些填充,并且简单地更改操作栏颜色也会导致相同颜色的较暗状态栏,因为状态栏实际上是半透明的并且与我的操作栏重叠。但是,由于某种原因,我的情况不会发生这种情况。无论我将 fitsSystemWindows
设置为 true
或 false
还是完全删除该属性,操作栏都会停留在原处。操作栏总是在状态栏下方,当然,如果我设置了透明度,它总是黄色的。
我还尝试在以编程方式更改状态栏颜色时将其设置为 alpha。这确实使状态栏有些透明,但看起来很奇怪,因为它不再是真正的黑暗。删除 CoordinatorLayout
也无济于事。我花了几个小时试图解决这个问题,现在很沮丧。任何帮助是极大的赞赏。
我的activity_main
:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout 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:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<include
layout="@layout/app_bar_main"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true">
<include layout="@layout/nav_header_main" />
<android.support.v7.widget.RecyclerView
android:id="@+id/nav_menu_recyclerview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="@dimen/nav_header_height"
android:clipToPadding="false"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/size_14dp"
app:layoutManager="LinearLayoutManager" />
</android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>
这是我的 app_bar_main
的 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">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay"
app:elevation="0dp">
<FrameLayout
android:id="@+id/toolbar_container"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:popupTheme="@style/AppTheme.PopupOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary" />
<com.quintype.sakshipost.Widgets.CustomMaterialSearchView
android:id="@+id/search_view"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</FrameLayout>
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_main" />
</android.support.design.widget.CoordinatorLayout>
最佳答案
您的问题是因为 getWindow().setStatusBarColor()
不能很好地与 DrawerLayout
一起工作。为了使状态栏保持半透明并能够更改其颜色,您必须遵循以下过程:
在您的 v21/styles.xml
文件中添加/修改以下主题,如下所示:
<style name="AppTheme.NoActionBar" parent="AppTheme">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:windowTranslucentStatus">true</item>
</style>
这是标准 DrawerLayout
使用的主题(当然,假设您在具有 DrawerLayout
的 Activity 中使用此主题)。如您所知,这将使您的状态栏变得半透明。
接下来,从 app_bar_main
的 CoordinatorLayout
中删除 android:fitsSystemWindows="true"
。
接下来,无论您在哪里更改工具栏/状态栏的颜色,都使用 drawerLayout.setStatusBarBackground(colorDrawable)
使用与工具栏相同的颜色(当然,假设引用您的 DrawerLayout
称为 drawerLayout
)。请注意,drawerLayout.setStatusBarBackground()
方法接受一个 Drawable
对象,这与 window.setStatusBarColor()
方法不同,后者接受一个 int
颜色,因此您可能必须使用如下方法将颜色转换为可绘制对象:
new ColorDrawable(ContextCompat.getColor(getApplicationContext(), R.color.colorPrimary))
这将确保您的状态栏是半透明的,并使其能够改变颜色。希望你能够让它发挥作用。
关于Android:具有动态 actionBar 颜色和 DrawerLayout 的透明状态栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38199941/
这是代码片段。 请说出这种用小内存存储大数据的算法是什么。 public static void main(String[] args) { long longValue = 21474836
所以我使用 imap 从 gmail 和 outlook 接收电子邮件。 Gmail 像这样编码 =?UTF-8?B?UmU6IM69zq3OvyDOtc68zrHOuc67IG5ldyBlbWFpb
很久以前就学会了 C 代码;想用 Scheme 尝试一些新的和不同的东西。我正在尝试制作一个接受两个参数并返回两者中较大者的过程,例如 (define (larger x y) (if (> x
Azure 恢复服务保管库有两个备份配置选项 - LRS 与 GRS 这是一个有关 Azure 恢复服务保管库的问题。 当其驻留区域发生故障时,如何处理启用异地冗余的恢复服务保管库?如果未为恢复服务启
说,我有以下实体: @Entity public class A { @Id @GeneratedValue private Long id; @Embedded private
我有下一个问题。 我有下一个标准: criteria.add(Restrictions.in("entity.otherEntity", getOtherEntitiesList())); 如果我的
如果这是任何类型的重复,我会提前申请,但我找不到任何可以解决我的具体问题的内容。 这是我的程序: import java.util.Random; public class CarnivalGame{
我目前正在使用golang创建一个聚合管道,在其中使用“$ or”运算符查询文档。 结果是一堆需要分组的未分组文档,这样我就可以进入下一阶段,找到两个数据集之间的交集。 然后将其用于在单独的集合中进行
是否可以在正则表达式中创建 OR 条件。 我正在尝试查找包含此类模式的文件名列表的匹配项 第一个案例 xxxxx-hello.file 或者案例二 xxxx-hello-unasigned.file
该程序只是在用户输入行数时创建菱形的形状,因此它有 6 个 for 循环; 3 个循环创建第一个三角形,3 个循环创建另一个三角形,通过这 2 个三角形和 6 个循环,我们得到了一个菱形,这是整个程序
我有一个像这样的查询字符串 www.google.com?Department=Education & Finance&Department=Health 我有这些 li 标签,它们的查询字符串是这样
我有一个带有静态构造函数的类,我用它来读取 app.config 值。如何使用不同的配置值对类进行单元测试。我正在考虑在不同的应用程序域中运行每个测试,这样我就可以为每个测试执行静态构造函数 - 但我
我正在寻找一个可以容纳多个键的容器,如果我为其中一个键值输入保留值(例如 0),它会被视为“或”搜索。 map, int > myContainer; myContainer.insert(make_
我正在为 Web 应用程序创建数据库,并正在寻找一些建议来对可能具有多种类型的单个实体进行建模,每种类型具有不同的属性。 作为示例,假设我想为“数据源”对象创建一个关系模型。所有数据源都会有一些共享属
(1) =>CREATE TABLE T1(id BIGSERIAL PRIMARY KEY, name TEXT); CREATE TABLE (2) =>INSERT INTO T1 (name)
我不确定在使用别名时如何解决不明确的列引用。 假设有两个表,a 和 b,它们都有一个 name 列。如果我加入这两个表并为结果添加别名,我不知道如何为这两个表引用 name 列。我已经尝试了一些变体,
我的查询是: select * from table where id IN (1,5,4,3,2) 我想要的与这个顺序完全相同,不是从1...5,而是从1,5,4,3,2。我怎样才能做到这一点? 最
我正在使用 C# 代码执行动态生成的 MySQL 查询。抛出异常: CREATE TABLE dump ("@employee_OID" VARCHAR(50)); "{"You have an er
我有日期 2016-03-30T23:59:59.000000+0000。我可以知道它的格式是什么吗?因为如果我使用 yyyy-MM-dd'T'HH:mm:ss.SSS,它会抛出异常 最佳答案 Sim
我有一个示例模式,它的 SQL Fiddle 如下: http://sqlfiddle.com/#!2/6816b/2 这个 fiddle 只是根据 where 子句中的条件查询示例数据库,如下所示:
我是一名优秀的程序员,十分优秀!