- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我有一个带有抽屉导航和全出血 fragment 的 Activity (顶部的图像必须出现在 Lollipop 的半透明系统栏后面)。虽然我有一个临时解决方案,其中 Fragment 通过简单地膨胀 <fragment>
Activity 的 XML 中的标签,看起来不错。
然后我不得不替换 <fragment>
与 <FrameLayout>
并执行 fragment 事务,现在 fragment 不再出现在系统栏后面,尽管 fitsSystemWindows
设置为 true
跨越所有必需的层次结构。
我相信 <fragment>
的方式可能会有所不同。在 Activity 的布局中而不是在其自身中膨胀。我在 Google 上搜索并找到了一些针对 KitKat 的解决方案,但这些都不适用于我( Lollipop )。
activity.xml
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:fitsSystemWindows="true">
<FrameLayout
android:id="@+id/fragment_host"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
</FrameLayout>
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:layout_gravity="start"
android:fitsSystemWindows="true"/>
</android.support.v4.widget.DrawerLayout>
fragment.xml
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
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="224dp"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
...
当 activity.xml 是这样的时候它起作用了:
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:fitsSystemWindows="true">
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/fragment"
android:name="com.actinarium.random.ui.home.HomeCardsFragment"
tools:layout="@layout/fragment_home"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:layout_gravity="start"
android:fitsSystemWindows="true"/>
</android.support.v4.widget.DrawerLayout>
最佳答案
当您使用 <fragment>
时,在您的 Fragment 的 onCreateView
中返回的布局直接附加代替 <fragment>
标签(如果您查看 View 层次结构,您将永远不会真正看到 <fragment>
标签。
因此在 <fragment>
案例,你有
DrawerLayout
CoordinatorLayout
AppBarLayout
...
NavigationView
类似于 cheesesquare作品。这是有效的,因为正如 this blog post 中所解释的那样, DrawerLayout
和 CoordinatorLayout
两者都有不同的规则 fitsSystemWindows
适用于他们 - 他们都使用它来插入他们的 subview ,但也调用 dispatchApplyWindowInsets()在每个 child 上,允许他们访问 fitsSystemWindows="true"
属性。
这与 FrameLayout
等布局的默认行为不同。当你在哪里使用 fitsSystemWindows="true"
is 消耗所有插图,盲目地应用填充而不通知任何 subview (这是博客文章的“深度优先”部分)。
所以当您更换 <fragment>
带有 FrameLayout
的标签和 FragmentTransactions,您的 View 层次结构变为:
DrawerLayout
FrameLayout
CoordinatorLayout
AppBarLayout
...
NavigationView
因为 Fragment 的 View 被插入到 FrameLayout
.该 View 不知道通过fitsSystemWindows
subview ,所以您的 CoordinatorLayout
永远不会看到该标志或执行其自定义行为。
解决问题实际上相当简单:替换您的 FrameLayout
与另一个 CoordinatorLayout
。这确保了 fitsSystemWindows="true"
被传递到新膨胀的 CoordinatorLayout
来自 fragment 。
另一种同样有效的解决方案是创建 FrameLayout
的自定义子类并覆盖 onApplyWindowInsets()分派(dispatch)给每个 child (在你的情况下只是一个)或使用 ViewCompat.setOnApplyWindowInsetsListener()方法来拦截代码中的调用并从那里分派(dispatch)(不需要子类)。更少的代码通常是最容易维护的,所以我不一定建议通过 CoordinatorLayout
走这些路线。解决方案,除非您对此有强烈的感觉。
关于android - 对于通过 FragmentTransaction 添加的 fragment ,fitsSystemWindows 效果消失了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31190612/
我创建了一个用户可以添加测试的字段。这一切运行顺利我只希望当用户点击(添加另一个测试)然后上一个(添加另一个测试)删除并且这个显示在新字段中。 所有运行良好的唯一问题是点击(添加另一个字段)之前添加另
String[] option = {"Adlawan", "Angeles", "Arreza", "Benenoso", "Bermas", "Brebant
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a softwar
我正在努力将 jQuery 滚动功能添加到 nav-tab (Bootstrap 3)。我希望用户能够选择他们想要的选项卡,并在选项卡内容中有一个可以平滑滚动到 anchor 的链接。这是我的代码,可
我正在尝试在用户登录后再添加 2 个 ui 选项卡。首先,我尝试做一个之后。 $('#slideshow').tabs('remove', '4'); $("#slideshow ul li:last
我有一个包含选择元素的表单,我想通过选择添加和删除其中一些元素。这是html代码(这里也有jsfiddle http://jsfiddle.net/txhajy2w/):
正在写这个: view.backgroundColor = UIColor.white.withAlphaComponent(0.9) 等同于: view.backgroundColor = UICo
好的,如果其中有任何信息,我想将这些列添加到一起。所以说我有 账户 1 2 3 . 有 4 个帐户空间,但只有 3 个帐户。我如何创建 java 脚本来添加它。 最佳答案 Live Example H
我想知道是否有一种有效的预制算法来确定一组数字的和/差是否可以等于不同的数字。示例: 5、8、10、2,使用 + 或 - 等于 9。5 - 8 = -3 + 10 = 7 + 2 = 9 如果有一个预
我似乎有一个卡住的 git repo。它卡在所有基本的添加、提交命令上,git push 返回所有内容为最新的。 从其他帖子我已经完成了 git gc 和 git fsck/ 我认为基本的调试步骤是
我的 Oracle SQL 查询如下- Q1- select hca.account_number, hca.attribute3, SUM(rcl.extended_amou
我正在阅读 http://developer.apple.com/iphone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingG
我正在尝试添加一个“加载更多”按钮并限制下面的结果,这样投资组合页面中就不会同时加载 1000 个内容,如下所示:http://typesetdesign.com/portfolio/ 我对 PHP
我遇到这个问题,我添加了 8 个文本框,它工作正常,但是当我添加更多文本框(如 16 个文本框)时,它不会添加最后一个文本框。有人遇到过这个问题吗?提前致谢。 Live Link: JAVASCRIP
add/remove clone first row default not delete 添加/删除克隆第一行默认不删除&并获取正确的SrNo(例如:添加3行并在看到问题后删除SrNo.2)
我编码this ,但删除按钮不起作用。我在控制台中没有任何错误.. var counter = 0; var dataList = document.getElementById('materi
我有一个类似数组的对象: [1:数组[10]、2:数组[2]、3:数组[2]、4:数组[2]、5:数组[3]、6:数组[1]] 我正在尝试删除前两个元素,执行一些操作,然后将它们再次插入到同一位置。
使用的 Delphi 版本:2007 你好, 我有一个 Tecord 数组 TInfo = Record Name : String; Price : Integer; end; var Info
我使用了基本的 gridster 代码,然后我声明了通过按钮添加和删除小部件的函数它工作正常但是当我将调整大小功能添加到上面的代码中时,它都不起作用(我的意思是调整大小,添加和删除小部件) 我的js代
title 323 323 323 title 323 323 323 title 323 323 323 JS $(document).keydown(function(e){
我是一名优秀的程序员,十分优秀!