Я хочу прокрутить 2 cardview layout
до cardview 1st layout
вместо ниже. Для быстрой идеи вы можете увидеть ниже прикрепленное изображение. Но при прокрутке, вторая cardview layout
прокрутка под 1 cardview layout
.
.xml
код:
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_coordinatorlayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<include
layout="@layout/toolbar_primary"/>
<LinearLayout
android:id="@+id/main_linearlayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<androidx.cardview.widget.CardView
android:id="@+id/card_view1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
card_view:cardBackgroundColor="@color/white" >
</androidx.cardview.widget.CardView>
<ScrollView
android:id="@+id/linechart_scrollview"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<androidx.cardview.widget.CardView
android:id="@+id/card_view2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
card_view:cardBackgroundColor="@color/white">
</androidx.cardview.widget.CardView>
</ScrollView>
</LinearLayout>
</LinearLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
Как прокрутить над другим макетом. Пожалуйста, дайте мне знать решение и заранее спасибо.