0
A
回答
1
此功能,只有當你的父母佈局是一個協調layout.This可以使用app:layout_anchor=""
和app:layout_anchorGravity=""
有些事情是這樣實現的工作原理:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/com.example.myapp"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff"
>
<android.support.design.widget.AppBarLayout android:layout_height="wrap_content"
android:layout_width="match_parent"
android:id="@+id/appBar"
>
<!-- Put your content that is supposed to be in the appbar here -->
</android.support.design.widget.AppBarLayout>
<android.support.design.widget.FloatingActionButton
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:src="@drawable/your_drawable_resource_file"
app:borderWidth="0dp"
app:fabSize="normal"
app:layout_anchor="@id/appBar"
app:layout_anchorGravity="left|bottom|start"/>
</android.support.design.widget.CoordinatorLayout>
希望這很有幫助。
1
如果你的父母佈局相對佈局。 只需使用
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="true"
android:orientation="vertical">
<android.support.design.widget.FloatingActionButton
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:id="@+id/myFAB"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_plus_sign"
app:elevation="4dp"
/>
</RelativeLayout>
相關問題
- 1. Android按鈕浮動佈局
- 2. 按鈕放置在線性佈局
- 3. 覆蓋線性浮動按鈕佈局
- 4. 在相對佈局中調整浮動按鈕位置
- 5. 如何讓浮動按鈕保持在佈局的底部?
- 6. 如何將按鈕放置在所需位置的佈局android
- 7. 如何把一個透明的佈局浮動動作按鈕
- 8. 放置提交按鈕qml佈局bb10
- 9. Android - 如何放置帶線性佈局的按鈕和旋鈕?
- 10. 如何在帶有按鈕的佈局中放置framelayout?
- 11. 如何在佈局中的FlakeView上放置按鈕?
- 12. 如何在相對佈局的中心放置一個按鈕?
- 13. 如何在佈局的邊緣放置按鈕
- 14. 如何根據條件在佈局上放置按鈕?
- 15. 如何將按鈕放在浮動按鈕中?
- 16. Android佈局:如何將按鈕放在列表視圖的末尾
- 17. 如何在佈局中的行上放置動態創建的按鈕?
- 18. 設置4按鈕的自動佈局
- 19. 自動佈局按鈕位置
- 20. 不能把浮動操作按鈕在兩個佈局
- 21. 我們如何可以把任何佈局上的浮動動作按鈕
- 22. 動態按鈕Android佈局
- 23. 動態按鈕佈局android
- 24. Android Studio:使用佈局放置畫布和按鈕
- 25. 如何在網格佈局中設置按鈕的位置?
- 26. 在相對佈局下的editfield下方放置按鈕
- 27. 如何在佈局中播放按鈕的聲音onclick?
- 28. 在按鈕上設置新佈局
- 29. 液體佈局..使按鈕浮動右邊
- 30. 我需要覆蓋佈局上浮動操作菜單按鈕
不爲我工作:/ – Muffin
你可以提供你的xml文件作爲更多的參考 –
我沒有直接針對該問題的xml ^^ 我只是需要它,因爲它是我附加在我的問題 – Muffin