我試圖將FAB按鈕附加到底部視圖視圖,如Google地圖。但是我不能讓它工作,Android無法將FAB按鈕錨定到底部圖片
這是FAB按鈕的代碼:
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_email"
app:layout_anchor="@+id/nestedscrollview" --> BottomSheet view ID
app:layout_anchorGravity="bottom|end"
app:elevation="4dp"
/>
,這是的BottomSheet查看
<android.support.v4.widget.NestedScrollView
android:id="@+id/nestedscrollview"
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:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior"
tools:context="com.pub.uac.ui.location.LocationActivity"
android:background="@color/background_white_trasnparent"
>
...
</...
在github上試試這個例子.............. https://github.com/chrisbanes/cheesesquare –
我也在嘗試同樣的事情嗎? – sector11
還沒有,仍然試圖找出如何掛鉤ID –