底部按鈕/某些視圖隱藏列表視圖底部部分。Android協調員佈局底欄隱藏列表視圖內
<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">
<android.support.design.widget.AppBarLayout
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.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="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="example.design.activities.DetailsActivity"
android:background="@color/grey">
<android.support.v7.widget.RecyclerView
android:paddingTop="80dp"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</android.support.v4.widget.NestedScrollView>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="bottom"
android:gravity="bottom">
<!-- Add to cart button -->
<android.support.v7.widget.AppCompatButton
android:id="@+id/ssssss"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="20dp"
android:text="ADD TO CART"
android:backgroundTint="@color/colorPrimary"
android:textColor="@color/white"
android:layout_alignParentBottom="true"
android:visibility="visible" />
</RelativeLayout>
</android.support.design.widget.CoordinatorLayout>
我會仰視圖中可見和不可見基於條件。
如何調整我的列表視圖滾動更多,如果底部欄可見?
你能描述更 –
我的菜單項列表,一旦用戶選擇的項目,我將標誌着一個按鈕可見。圖像顯示可見按鈕。此時列表視圖的最後一個元素隱藏在按鈕後面。我想把它放在最上面/滾動更多。 –
你有沒有檢查[this](https://stackoverflow.com/questions/33668144/position-view-below-another-view-in-coordinatorlayout-in-android)。 – paril