android– 底部栏顶部的浮动 *** 作按钮

android– 底部栏顶部的浮动 *** 作按钮,第1张

概述如何在底栏/导航底部视图的顶部有浮动 *** 作按钮,如图中所示!请帮我!解决方法:您需要使用FloatingActionButton的高程属性.elevation=“8dp”为我工作.样本布局:<FrameLayoutxmlns:android="http://schemas.android.com/apkes/android"xmlns:app="http://schemas.android

如何在底栏/导航底部视图的顶部有浮动 *** 作按钮,如图中所示!请帮我 !

解决方法:

您需要使用floatingActionbutton的高程属性.

elevation =“8dp”为我工作.

样本布局:

<FrameLayout 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/container"    androID:layout_wIDth="match_parent"    androID:layout_height="match_parent">    <FrameLayout        androID:ID="@+ID/content"        androID:layout_wIDth="match_parent"        androID:layout_height="match_parent"        androID:layout_weight="1">        <TextVIEw            androID:ID="@+ID/message"            androID:layout_wIDth="match_parent"            androID:layout_height="wrap_content"            androID:layout_marginBottom="@dimen/activity_vertical_margin"            androID:layout_marginleft="@dimen/activity_horizontal_margin"            androID:layout_marginRight="@dimen/activity_horizontal_margin"            androID:layout_margintop="@dimen/activity_vertical_margin"            androID:text="@string/Title_home" />    </FrameLayout>    <androID.support.design.Widget.BottomNavigationVIEw        androID:ID="@+ID/navigation"        androID:layout_wIDth="match_parent"        androID:layout_height="wrap_content"        androID:layout_gravity="bottom"        androID:background="?androID:attr/windowBackground"        app:menu="@menu/navigation" />    <androID.support.design.Widget.floatingActionbutton        androID:ID="@+ID/floatingActionbutton"        androID:layout_wIDth="wrap_content"        androID:layout_height="wrap_content"        androID:layout_gravity="bottom|center_horizontal"        androID:layout_marginBottom="40dp"        androID:clickable="true"        app:elevation="8dp"        app:srcCompat="@androID:drawable/ic_input_add" /></FrameLayout>
总结

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

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存