当我执行一些操作时,我的底部错误如下面所示。 当某些方法运行时,例如在购物车中添加项目或显示键盘时,BottomSheet布局会下降(完全不会)。 你们可以看到布局的顶部尝试补偿添加更多的布局。
我的XML代码BottomSheet。它在CoordinatorLayout中。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/content_bottom_sheet_produto_similar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:focusable="true"
android:orientation="vertical"
app:layout_behavior="@string/bottom_sheet_behavior">
<RelativeLayout
android:id="@+id/header_bottom_sheet_prod_similiar"
android:layout_width="match_parent"
android:layout_height="@dimen/peek_height"
android:background="@color/colorPrimary">
<ImageView
android:id="@+id/toggle_bt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
android:layout_centerInParent="true"
android:layout_centerVertical="true"
android:layout_marginStart="16dp"
android:layout_marginLeft="16dp"
android:src="@drawable/tb_up_down" />
<TextView
android:id="@+id/title_bottom_sheet_prod_similar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_toEndOf="@id/toggle_bt"
android:layout_toRightOf="@id/toggle_bt"
android:textAlignment="center"
android:textColor="@color/textColorPrimary"
android:textSize="18sp" />
</RelativeLayout>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_bottom_sheet"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
这是我的Java代码,我在其中设置了我的底表
private void setUpBottomSheet() {
layoutBottomSheet = findViewById(R.id.content_bottom_sheet_produto_similar);
behavior = BottomSheetBehavior.from(layoutBottomSheet);
behavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
txtTitleProdutoSimilar.setText("Ver Produtos Similares");
behavior.setPeekHeight(getResources().getDimensionPixelSize(R.dimen.peek_height));
behavior.setHideable(false);
behavior.setBottomSheetCallback(new BottomSheetBehavior.BottomSheetCallback() {
@Override
public void onStateChanged(@NonNull View view, int newState) {
changeTextFromBottomSheet(newState);
bottomSheetExpandedColapsed();
}
@Override
public void onSlide(@NonNull View view, float v) {
transitionBottomSheetBackgroundColor(v);
animateBottomSheetArrows(v);
}
});
}