我正在设计我的XML,并且最初有一个与Action Toolbar重叠的Coordinator Layout.我阅读并发现添加应用程序:layout_behavior =“@ string / appbar_scrolling_vIEw_behavior属性有助于解决此问题.
但是,在我的XML中,我仍然遇到协调器布局与预览屏幕上的底部按钮重叠的问题.我知道这些按钮实际上是在手机上,但我仍然感到困惑,为什么布局扩展到这些项目.看下面的图像与底部按钮重叠,我不记得在引入协调器布局之前看到这个:
<androID.support.design.Widget.AppbarLayout androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:theme="@style/Apptheme.AppbarOverlay"> <androID.support.v7.Widget.Toolbar androID:ID="@+ID/toolbar" androID:layout_wIDth="match_parent" androID:layout_height="?attr/actionbarSize" androID:background="?attr/colorPrimary" app:popuptheme="@style/Apptheme.PopupOverlay" /></androID.support.design.Widget.AppbarLayout><linearLayout androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:orIEntation="vertical" app:layout_behavior="@string/appbar_scrolling_vIEw_behavior"> <ImageVIEw androID:layout_wIDth="match_parent" androID:layout_height="0dp" androID:layout_weight="2.2" /> <linearLayout app:layout_behavior="@string/appbar_scrolling_vIEw_behavior" androID:layout_wIDth="match_parent" androID:orIEntation="vertical" androID:layout_height="0dp" androID:layout_weight="2"> <TextVIEw androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" /> <CheckBox androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" /> </linearLayout> <linearLayout androID:layout_wIDth="match_parent" androID:layout_height="0dp" androID:layout_weight="1.3"> </linearLayout></linearLayout>
解决方法:
当你添加app:layout_behavior =“@ string / appbar_scrolling_vIEw_behavior”它基本上做的是它在工具栏下面设置该布局并将这两个布局放入ScrollVIEw类的东西.因为在该布局的顶部有一个工具栏,所以整个布局(形成的ScrollVIEw)被工具栏的高度向下推.
总结以上是内存溢出为你收集整理的android – 协调器布局重叠底部按钮全部内容,希望文章能够帮你解决android – 协调器布局重叠底部按钮所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)