- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有以下 XML:
<android.support.design.widget.CoordinatorLayout
android:id="@+id/sliding_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/app_bar">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<fragment
android:id="@+id/fragment1"
android:name="com.xyz.Fragment1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
tools:layout="@layout/fragment_layout1" />
</LinearLayout>
<LinearLayout
android:id="@+id/layoutBottomSheet"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="@dimen/global_margin"
android:orientation="vertical"
app:layout_behavior="@string/bottom_sheet_behavior">
<fragment
android:id="@+id/fragment2"
android:name="com.xyz.Fragment2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center|top"
tools:layout="@layout/fragment_layout2" />
</LinearLayout>
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="@dimen/global_margin"
android:layout_marginRight="@dimen/global_margin"
android:src="@drawable/ic_add_white_24dp"
app:borderWidth="0dp"
app:elevation="4dp"
app:layout_anchor="@id/layoutBottomSheet"
app:layout_anchorGravity="top|right|end" />
</android.support.design.widget.CoordinatorLayout>
布局应显示为 Fragment1
,然后在 Fragment2
下方,FAB 锚定到 Fragment2
但是,上方 Fragment2
而不是在 下。
实际上它显示为,
出了什么问题?有什么想法吗?
最佳答案
<LinearLayout
android:id="@+id/layoutBottomSheet"
android:elevation="@dimen/global_margin"
...>
layoutBottomSheet
可能有太多高度,FloatingActionButton 的默认高度是 4dp
,这就是你的按钮隐藏在较高布局后面的原因。
尝试使用低于或等于 4dp
关于android - FAB 隐藏在 Bottom Sheet 下,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37573348/
我是第一次尝试设计网站。我正在尝试在右侧设置一种导航栏,但我无法正确定位它。当我使用边距或填充时,只有边距和填充适用于顶部、右侧和左侧。当我尝试使用 padding-bottom 或 margin-b
这个问题在这里已经有了答案: How can I position my div at the bottom of its container? (25 个答案) 关闭 4 年前。
我有一个垂直的 LinearLayout,它有一个 ListView ,一个 ImageView 在底部,一个在顶部, ListView 填满了留下的空间。 看起来像这样:
https://imgur.com/gallery/xntpREw 有没有人遇到这个问题,或者我做错了什么 更新:我在android 8和9版本上测试了同一个应用程序,但没有出现此故障,因此,这可能特
我将 relativelayout 作为 bottomsheet 行为。在 relativelayout 中,我有 imageview,下面是 recyclerview。现在我想防止用户在 recyc
我在 mi 页面的末尾有这个 navbar-fixed-bottom。 我为 HTML 添加边距底部 html { margin-bottom: 100px } .. 避免页
如何让绝对定位的元素到达页面底部? 我想在我的页面上创建一个“封面”。为了让它覆盖整个页面,我使用了“position: absolute”,四个方向都设置为0。但是,当页面内容的高度大于客户端窗口的
我有一个应该显示日历的 HTML 页面。 有一张图像要显示在日历上方和下方。但是 below(id=bottomCell) 显示不正确(在右边,不在下面)。 你能告诉我如何让底部图片处于正确的位置吗?
对我来说,同时指定 bottom 和 margin-bottom 似乎是矛盾的。因为两者都是指定元素与周围元素/容器之间缩进的方法。也就是说,bottom 应该从边框开始测量,否则它的缩进量是从缩进量
这jsFiddle说明这个问题指的是什么(下面的完整代码)。请注意,即使 #outer-div 应该有 0 个 padding,而 #inner-div 应该有 0 个 margin-bottom,看
我正在尝试完成像 instagram 帖子这样的示例:https://www.instagram.com/p/BXgsKFLBczA/?taken-by=claymicro列表扩展但不会将页脚向下推在
我正在编写一个使用二维数组的程序。用户选择一行和一列;如果至少有一个直接与 N S E 或 W 匹配的元素,则它变为 '.'我一直遇到段错误,因为经过各种测试和解决问题后,我相当确定它陷入了 if t
我正在做一个我第一次使用 scss 的元素。我们有一个主文件,@imports 所有其他文件;这可能还会导入一些其他文件。 编译需要很长时间。人们说这是使用 Sass 时的正常方法。但我怀疑采用相反的
我使用 windbg 在我的 Windows 10 机器上运行一个程序,并让它在初始断点处中断。我获取堆栈的物理底部地址(TEB 的 stackBase),并减去 ntdll!LdrInitializ
我有一个 Bottom Sheet ,我正在加载弹出窗口,但它没有显示在 Bottom Sheet 中。该弹出窗口显示在 Bottom Sheet 格的后面 CustomTextView te
我有一个带有垂直堆栈 View 的 UIScrollView,它有一个标签和一个按钮,我希望按钮停留在屏幕底部,一旦标签的文本增加并到达按钮,按钮将保留在标签下方,并且它们一起滚动。 我在想: let
我在 Android 中创建了一个 View ,我需要从下到上对其进行动画处理,反之亦然。当我单击 ImageView 时,我需要从下到上为完整的 RelativeLayout 设置动画,并且它成功了
我在react native 应用程序中使用react-native-raw-bottom-sheet,打开 Bottom Sheet 时黑色透明 View 。 最佳答案 关于react-nativ
My blog的弹出帖子设置为底部:0;但是当 div 实际上位于底部时,div 中的内容不会移动......有什么想法吗? 最佳答案 看起来你在 javascript 中设置了顶部位置,它覆盖了你的
我在 Google 和此处进行了一些搜索,但找不到适合我的问题的解决方案。我已经完成了网站设计,但忘记包含社交媒体链接。为了解决这个问题,我决定将图标放在页面底部。问题是当内容没有填满整个页面时,图标
我是一名优秀的程序员,十分优秀!