您好我是Android開發新手。Android使固定位置的浮動操作菜單
我把下面的代碼:
listView.setNestedScrollingEnabled(true);
隱藏頂部的工具欄,當我滾動列表視圖。但是,所有子視圖都會移動,包括「浮動操作菜單」。
我希望浮動操作菜單保持空閒,固定在該位置,並且不受NestedScrollingEnabled行爲的影響。顯然它會影響父視圖。
任何解決這個?謝謝。
我的XML大致是這樣的(只是忽略附加的圖片是從XML代碼升技不同,因爲它是太長,但總的想法是有):
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:fab="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/fragment_price_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#e3e3e3">
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/swipeContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/buttons_selection_container">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ProgressBar
android:id="@+id/progressBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="15dp"
android:indeterminateTint="@color/colorProgressBarPrimary"
android:indeterminateTintMode="src_atop"/>
<TextView
android:id="@+id/textView_no_data"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="No Price Data"
android:layout_gravity="center_horizontal|center_vertical"
android:textStyle="bold"
android:textSize="18dp"
android:visibility="gone"/>
<ListView
android:id="@+id/listView_prices"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:nestedScrollingEnabled="true">
</ListView>
</FrameLayout>
</android.support.v4.widget.SwipeRefreshLayout>
<com.getbase.floatingactionbutton.FloatingActionsMenu
android:id="@+id/price_fragment_float_Menu_button"
android:layout_width="322dp"
android:layout_height="376dp"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_marginBottom="46dp"
android:layout_marginRight="10dp"
fab:fab_addButtonColorNormal="@color/color_float_blue_dark"
fab:fab_addButtonColorPressed="@color/colorAccent"
fab:fab_addButtonPlusIconColor="@color/white">
<com.getbase.floatingactionbutton.FloatingActionButton
android:id="@+id/button_switch_price"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
fab:fab_colorNormal="@color/color_float_blue_lite"
fab:fab_colorPressed="@color/colorAccent"
fab:fab_icon="@drawable/button_different_currencies"
fab:fab_size="mini"
fab:fab_title="Switch Price"/>
</com.getbase.floatingactionbutton.FloatingActionsMenu>
</RelativeLayout>
在另一個視圖中創建浮動按鈕幷包含您的佈局 – Vadivel
使用[Google FAB按鈕](https://guides.codepath.com/android/floating-action-buttons)而不是自定義按鈕。 –