Вложенное представление прокрутки содержит только одно прямое представление в качестве дочернего, если вы хотите добавить больше, то вам нужно включить только один дочерний вид в качестве группы представления, такой как линейный макет, чтобы он мог содержать больше видов, как вы можете добавлять кнопки и т. Д.другими словами, группа представлений может содержать несколько представлений, если вы поместите их как дочернее представление NestedScrollView.Я включил макет как дочерний элемент NestedScrollView, и в дальнейшем у него много представлений.
<android.support.v4.widget.NestedScrollView
android:id="@+id/scroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<include layout="@layout/descriptioncontent_layout" />
</android.support.v4.widget.NestedScrollView>
добавление нескольких элементов в описание content_layout ... и т. д.
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="8dp"
card_view:cardCornerRadius="5dp">
<include layout="@layout/descption_layout" />
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="8dp"
card_view:cardCornerRadius="5dp">
<include layout="@layout/howtodoit" />
</android.support.v7.widget.CardView>
Description_layout.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="Full Body:"
android:id="@+id/description"
android:textSize="20sp"
android:textColor="@color/how"
android:padding="10dp"
android:layout_marginLeft="10dp"
android:layout_gravity="center|left" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="If you are brand new to yoga, there are certain postures that are essential for you to learn so you can feel comfortable in a class or practicing on your own at home"
android:id="@+id/detaildescription"
android:textSize="18sp"
android:padding="10dp"
android:layout_gravity="center_horizontal" />