У меня есть много фрагментов в линейном макете, например, повторное рассмотрение. Я имею в виду, что у меня есть фрагмент в действии, а фрагмент имеет линейное (вертикальное) расположение. И линейное расположение имеет фрагменты. Я хочу изменить места фрагментов, таких как перетаскиваниеКак это сделать? Вы можете мне помочь?
<ScrollView
android:id="@+id/scrollView_container"
android:background="@color/white"
android:paddingTop="@dimen/window_small_padding"
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="wrap_content"
tools:context=".fragments.MainFragment">
<LinearLayout
android:id="@+id/linear_layout_widget_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="6dp"
android:orientation="vertical">
</LinearLayout>
</ScrollView>