這裏有一點新鮮感。我約兩個月的Android開發,但我在其他環境中有多年的開發經驗。FloatingActionButton,layout_anchor和layout_gravity
好的。我有一個FloatingActionButton
這是沒有出現在我的預期或想要它。它位於CoordinatorLayout
之內,以及AppBarLayout
/Toolbar
,以及ListView
之後。
這裏的佈局:
<?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-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/fragment_coordinator"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".ViewVehicleList">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:title="Vehicle List"
app:layout_scrollFlags="scroll|enterAlways|snap"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
</android.support.design.widget.AppBarLayout>
<ListView
android:id="@+id/Vehicle_ListView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:background="#FFFFFF"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
</ListView>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab_AddVehicle"
style="@style/FloatingAddButton"
android:src="@drawable/ic_green_add"
android:layout_gravity="bottom|end"
app:layout_anchor="@id/Vehicle_ListView"
android:onClick="addVehicle"/>
</android.support.design.widget.CoordinatorLayout>
採用這種佈局,屏幕看起來是這樣的:
我layout_gravity
說"bottom|end"
。我將其更改爲"bottom|right"
,但獲得了相同的結果。我已經閱讀了很多教程,並研究了Stack Overflow,並沒有運氣。
我設法通過去除FAB元素app:layout_anchor="@id/Vehicle_ListView"
,這似乎違揹我讀過運行列出的錨來解決這個問題:使用FAB,它正確地定位你需要使用layout_anchor
和layout_gravity
。如果沒有錨標記,它看起來像這樣:
因此,這裏是我的問題:爲什麼我的錨搞砸了我的FloatingActionButton
的定位是什麼?我究竟做錯了什麼?
-boster