android – FAB(浮动动作按钮)不浮动

android – FAB(浮动动作按钮)不浮动,第1张

概述我试图使用floatingactionbutton元素,但它不会在UI布局中浮动,浮动按钮占据布局的一部分而不是在组件上,在我的情况下是一个viewpager, button doesn’t float 这是我的布局: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools=" 我试图使用floatingactionbutton元素,但它不会在UI布局中浮动,浮动按钮占据布局的一部分而不是在组件上,在我的情况下是一个vIEwpager,

button doesn’t float

这是我的布局:

<linearLayout xmlns:androID="@R_404_6822@://schemas.androID.com/apk/res/androID"    xmlns:tools="@R_404_6822@://schemas.androID.com/tools"    androID:layout_wIDth="match_parent"    androID:layout_height="match_parent"    xmlns:app="@R_404_6822@://schemas.androID.com/apk/res-auto"    tools:context="com.frases.frases.FraseMain"    androID:orIEntation="vertical">    <androID.support.v7.Widget.Toolbar        xmlns:androID="@R_404_6822@://schemas.androID.com/apk/res/androID"        xmlns:app="@R_404_6822@://schemas.androID.com/apk/res-auto"        androID:ID="@+ID/appbar"        androID:layout_height="wrap_content"        androID:layout_wIDth="match_parent"        androID:minHeight="?attr/actionbarSize"        androID:background="?attr/colorPrimary"        androID:theme="@style/themeOverlay.AppCompat.Dark.Actionbar"        app:popuptheme="@style/themeOverlay.AppCompat.light" >    </androID.support.v7.Widget.Toolbar>    <androID.support.design.Widget.TabLayout        androID:ID="@+ID/slIDing_tabs"        androID:layout_wIDth="match_parent"        androID:layout_height="wrap_content"        app:tabMode="fixed"/>    <androID.support.v4.vIEw.VIEwPager        androID:ID="@+ID/vIEwpager"        androID:layout_wIDth="match_parent"        androID:layout_height="0dp"        androID:layout_weight="1"        androID:background="@androID:color/white" />    <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:src="@androID:drawable/ic_dialog_email" /></linearLayout>
解决方法 这是因为您使用linearLayout作为根布局.您需要FrameLayout将元素堆叠在一起,并且FAB需要是最后一个子节点,因为它需要保持在每个其他视图之上.
<FrameLayout>  <linearLayout>    ...  </linearLayout>  <!-- FAB be the last node insIDe FrameLayout here -->  <androID.support.design.Widget.floatingActionbutton /></FrameLayout>
总结

以上是内存溢出为你收集整理的android – FAB(浮动动作按钮)不浮动全部内容,希望文章能够帮你解决android – FAB(浮动动作按钮)不浮动所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1134777.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存