首先,我对CoordinatorLayouts不熟悉,我有一个包含几个可滚动CardView的片段,当我尝试添加 Bottom Sheet 时,我得到了 Bottom Sheet 必须是coordinatorLayout 错误的子代,因此我添加了coordinatorLayout和现在我似乎无法滚动了
PS:我尝试用ScrollView
替换NestedScrollView
,但它不起作用,我什至尝试编辑XML标签顺序,但没有任何解决方法,我仍然无法滚动
有没有一种方法可以使用Bottom Sheets
而不必使用CoordinatorLayout
?
这是ScrollView的XML布局片段:
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:context=".ThreeFragment" >
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/MainScrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fillViewport="false">
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical"
android:padding="10dp">
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="1dp"
style="@style/MyCardViewStyleTitle"
android:id="@+id/view">
<TextView
android:text="I- Pure Vowels"
android:textStyle="normal"
android:background="@color/colorPrimaryDark"
android:textSize="20dp"
android:textColor="@color/white"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_marginBottom="1dp"
android:layout_height="wrap_content"
style="@style/MyCardViewStyleContent"
android:id="@+id/textView10"
android:layout_below="@+id/view"
android:layout_alignParentStart="true">
<TextView
android:text="Pronouncing : á"
android:textStyle="bold|italic"
android:textSize="17dp"
android:textColor="@color/black"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
android:text="\n\nas in English father\nE.g. ár ‘year’"
android:textStyle="normal"
android:textSize="40px"
android:textColor="@color/black"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</android.support.v7.widget.CardView>
<!-- more cardviews -->
</LinearLayout>
</ScrollView>
<!-- Bottom Sheet Layout-->
<include layout="@layout/learn_more_sheet" />
</android.support.design.widget.CoordinatorLayout>
这是NestedScrollView的XML布局片段:
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:context=".ThreeFragment" >
<android.support.v4.widget.NestedScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/MainScrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fillViewport="false">
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical"
android:padding="10dp">
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="1dp"
style="@style/MyCardViewStyleTitle"
android:id="@+id/view">
<TextView
android:text="I- Pure Vowels"
android:textStyle="normal"
android:background="@color/colorPrimaryDark"
android:textSize="20dp"
android:textColor="@color/white"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_marginBottom="1dp"
android:layout_height="wrap_content"
style="@style/MyCardViewStyleContent"
android:id="@+id/textView10"
android:layout_below="@+id/view"
android:layout_alignParentStart="true">
<TextView
android:text="Pronouncing : á"
android:textStyle="bold|italic"
android:textSize="17dp"
android:textColor="@color/black"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
android:text="\n\nas in English father\nE.g. ár ‘year’"
android:textStyle="normal"
android:textSize="40px"
android:textColor="@color/black"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</android.support.v7.widget.CardView>
<!-- more cardviews -->
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
<!-- Bottom Sheet Layout-->
<include layout="@layout/learn_more_sheet" />
</android.support.design.widget.CoordinatorLayout>
主要 Activity XML布局
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
tools:context="com.incorp.anisvikernes.englishtonorse.MainActivity">
>
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="160px"
app:tabMode="fixed"
app:tabGravity="fill"/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
最佳答案
编辑:从片段中删除BottomSheetLayout,并将其放在ViewPager下的Activity中。然后在片段的顶部放置一个NestedScrollView
,其属性如下:
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:fillViewport="true">
要使BottomSheet仅出现在片段中,可以执行以下操作:
将visibility设置为
android:visiblity="gone"
,并在片段中将其设置为visibile,如下所示:var sheet = (View)getActivity().findViewById(R.id.{sheet});
sheet.setVisbility(view.Visible);
然后,在其他片段中,仅需使用
sheet.setVisbility(view.Gone);
进行相同操作要在按下时隐藏它,请在Activity 的中使用它:
@Override
public void onBackPressed() {
if (sheet.getVisibility() == View.VISIBLE) {
sheet.setVisbility(view.Gone);
}
关于android - Android-CoordinatorLayout中的滚动和 Bottom Sheet ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39059523/