我在我的应用程序中打开NestedScrollView,到目前为止,它从屏幕底部打开。如何从顶部打开它?
我尝试删除以下行:
app:layout_behavior="android.support.design.widget.BottomSheetBehavior"
但该应用程序崩溃时出现以下错误:
The view is not associated with BottomSheetBehavior
有没有办法从屏幕顶部打开底部纸张?
这是我的活动:
ViewPager mainViewPager;
private BottomSheetBehavior mBottomSheetBehavior;
int switcher = 1;
View menuPopupView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.workorder_selection_layout_with_fragment);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
...
....
...
filterButton = (Button)
findViewById(R.id.filterButtonMainWorkorderSelection);
filterButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (switcher == 1) {
mBottomSheetBehavior.setState(BottomSheetBehavior.STATE_EXPANDED);
switcher = 2;
} else {
mBottomSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
switcher = 1;
}
}
});
///////////////////////////////////////////
//////////////Buttom Sheet/////////////////
///////////////////////////////////////////
View bottomSheet = findViewById(R.id.bottom_sheet);
mBottomSheetBehavior = BottomSheetBehavior.from(bottomSheet);
}
这是我的xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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="apps.radwin.wintouch.activities.alignmentActivities.WorkordersSelectionActivity"
tools:showIn="@layout/app_bar_workorders_selection">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="8dp"
android:theme="@style/AppTheme.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:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/AppTheme.PopupOverlay">
</android.support.v7.widget.Toolbar>
<android.support.design.widget.TabLayout
android:id="@+id/tabsLayoutWorkorderSelection"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/workorderSelectionMainViewPagerContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end|bottom"
android:src="@drawable/add_workorders_plus"
android:layout_marginLeft="@dimen/fab_margin"
android:layout_marginRight="@dimen/fab_margin"
android:layout_marginBottom="@dimen/fab_margin"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true" />
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.v4.widget.NestedScrollView
android:id="@+id/bottom_sheet"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipToPadding="true"
android:background="#293339"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior"
>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toStartOf="@+id/fab">
...
...
...
<View
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_below="@+id/workorderFilterPopup_CompleteImage"
></View>
</RelativeLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
</RelativeLayout>
答案 0 :(得分:0)
我想使用谷歌的设计库是不可能的,因为按照设计,它应该从底部出现。
https://material.io/guidelines/components/bottom-sheets.html
“底部纸张从屏幕底部向上滑动以显示更多内容。”
尝试使用flipboard的底片的这个修改版本
https://github.com/jernkuan/bottomsheet
我添加了一个attr来控制底片是否应该从顶部出现。
答案 1 :(得分:0)
我不确定您想要的是什么,但是下面的链接是BottomSheetBehavior的“最高”版本。
完整代码,包括示例应用:https://github.com/ipuris/AndroidTopSheet
将TopSheetBehavior
类包含到您的项目中,然后可以通过将app:layout_behavior
的值更改为TopSheetBehavior
而不是android.support.design.widget.BottomSheetBehavior
来使用它。
以上代码是从original repository派生的,但是我为最新版本的Android修复了一些库依赖项(旧的android.support
库-> androidx
库)。
(对于@jernkuan来说,这个答案可能为时已晚,但我希望此答案对其他开发人员有所帮助。)