剛接觸Android編程的&現在正在掙扎。我正在使用android studio的默認「導航抽屜活動」。最重要的是,我從https://github.com/roughike/BottomBar
添加了一個底部欄。但是,在添加之後,我的FAB隱藏在Bottom Bar後面。隱藏在底部導航欄後面的Android浮動動作按鈕
這裏是Scrrenshot -
我知道這是某種風格的問題。我試圖給FAB提供bottomMargin。但是,它不工作。
這裏是我的代碼 -
app_bar_main.xml
<?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:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.bhramaan.android.bhramaan.MainActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/BhramaanTheme.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/BhramaanTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_main" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_email" />
<com.roughike.bottombar.BottomBar
android:id="@+id/bottomBar"
android:layout_width="match_parent"
android:layout_gravity="bottom|end"
android:layout_height="60dp"
android:layout_alignParentBottom="true"
app:bb_behavior="shy"
android:background="@color/bottomBar"
app:bb_activeTabColor="@color/white"
app:bb_tabXmlResource="@xml/bottombar_tabs" />
</android.support.design.widget.CoordinatorLayout>
需要一些指導,以解決這個問題。
此行添加到android.support.design.widget.FloatingActionButton在XML中的android:layout_above =「@ + ID/bottomBar」 – Nithinlal
檢查我的回答如下,讓我知道,如果你面對的任何問題。 –
@Nithinlal LOLZ你有沒有試過給這個'添加此行到android.support.design.widget.FloatingActionButton在Xml android:layout_above =「@ + id/bottomBar」'只是嘗試以上佈局。它是否擁有這個屬性或者不是!!!!!!!!! –