我正在尝试实现如下布局:
两个视图,重量为2(绿色视图)& 1(蓝色视图)呈线性布局。并且浮动按钮位于它们前面的那些视图之间。但是使用线性布局是不可能的。谁能在这里给予一点帮助
更新: 这就是我所做的
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2"
android:background="#22B14C" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="To be a floating button" />
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#00A2E8" />
</LinearLayout>
我得到的是
答案 0 :(得分:6)
感谢CoordinatorLayout中的Design Support Library,这个问题可以解决。
<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">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<View
android:id="@+id/top"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2"
android:background="#22B14C" />
<View
android:id="@+id/bottom"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#00A2E8" />
</LinearLayout>
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
app:backgroundTint="#a349a4"
app:fabSize="normal"
app:layout_anchor="@id/top"
app:layout_anchorGravity="bottom|right|end" />
</android.support.design.widget.CoordinatorLayout>
您必须使用layout_anchor
属性将FloatingActionButton锚定到顶视图,然后使用layout_anchorGravity
设置锚点重力
这就是你得到的:
答案 1 :(得分:0)
如果您想以LinearLayout
方式使用它,那么您可以执行此操作的唯一方法是为按钮定义固定高度。然后,您可以像这样实现叠加
<Button
android:layout_width="wrap_content"
android:layout_height="48dp"
android:layout_marginTop="-24dp"
android:layout_marginBottom="-24dp"
android:layout_gravity="center_horizontal"
android:text="To be a floating button"/>
但由于使用布局权重不是一个好习惯,我建议切换到RelativeLayout
。