我需要将底页停在两个位置。我有底部表格的以下代码。
<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/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
....
</RelativeLayout>
<FrameLayout
android:id="@+id/bottom_sheet"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:minHeight="1000dp"
android:orientation="vertical">
....
</LinearLayout>
</ScrollView>
</FrameLayout>
和
View bottomSheet = coordinatorLayout.findViewById(R.id.bottom_sheet);
final BottomSheetBehavior behavior = BottomSheetBehavior.from(bottomSheet);
behavior.setBottomSheetCallback(new BottomSheetBehavior.BottomSheetCallback() {
@Override
public void onStateChanged(@NonNull View bottomSheet, int newState) {
// React to state change
Log.e("onStateChanged", "onStateChanged:" + newState);
if (newState == BottomSheetBehavior.STATE_EXPANDED) {
behavior.setPeekHeight(600);
showAgain.setVisibility(View.GONE);
mMap.getUiSettings().setScrollGesturesEnabled(false);
} else if (newState == BottomSheetBehavior.STATE_COLLAPSED) {
if (behavior.getPeekHeight() == 600) {
behavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
behavior.setPeekHeight(80);
mMap.getUiSettings().setScrollGesturesEnabled(false);
} else if (behavior.getPeekHeight() == 80) {
showAgain.setVisibility(View.VISIBLE);
mMap.getUiSettings().setScrollGesturesEnabled(true);
}
}
}
@Override
public void onSlide(@NonNull View bottomSheet, float slideOffset) {
// React to dragging events
Log.e("onSlide", "onSlide " + slideOffset);
}
});
behavior.setPeekHeight(600);
除了一件事,这段代码工作正常。我第一次向上滚动底部页面然后我可以向下滚动它。我不能直接向下滚动表格。
任何帮助将不胜感激。
答案 0 :(得分:4)
您可以使用 NestedScrollView ,而不是使用scrollview 使用 CoordinatorLayout 可以更好地工作 确保使用 app:layout_behavior =&#34; @ string / appbar_scrolling_view_behavior&#34; ,以便在NestedScrollView内平滑滚动内容
$path_parts[count($path_parts)-1];
以上解决方案使用此链接为我工作: https://code.tutsplus.com/articles/how-to-use-bottom-sheets-with-the-design-support-library--cms-26031
答案 1 :(得分:1)
尝试设置:
app:behavior_hideable="true"
在您的xml文件和您的活动中添加如下内容:
else if (newState == BottomSheetBehavior.STATE_HIDDEN{
mBottomSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
mBottomSheetBehavior.setPeekHeight(80); }
如果您愿意,这将允许您立即下拉底部工作表对话框。
答案 2 :(得分:0)
试试这个, 希望它会有所帮助
在初始化视图后放置
SELECT Product FROM Store WHERE Product = "Unilever"