我在recyclerview之类的线性布局中有很多片段。我的意思是我在活动中有片段,而片段具有线性布局(垂直)布局。而线性布局中有片段。我想更改片段的位置,例如拖放recyclerview。如何实现?您能帮我吗?
<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>