I want to have a view group which may has some views which are positioned horizontally next together. The problem with my code is, everything is fine but when children count is getting greater, all children positioned horizontally together and exceed the device width. I need to force them move to next line if they exceed the device width.
This is my code:
<LinearLayout
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:layout_height="92dp"
android:layout_marginTop="?attr/actionBarSize"
android:background="@color/divider"
android:padding="6dp">
<LinearLayout
android:id="@+id/linear_layout_container"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal"></LinearLayout>
<ImageButton
android:id="@+id/image_button_add_item"
android:layout_width="78dp"
android:layout_height="match_parent"
android:background="@color/secondary_text"
android:contentDescription="@string/content_description_add_new_file"
android:src="@drawable/ic_plus"/>
</LinearLayout>
Note: the linear_layout_container
view group contains all views and all of them are children of linearLayout
view group.
LinearLayout works that way by default. For your purpose you require a FlowLayout.
Romain guy's FlowLayout
Just warp your views with FlowLayout.
You could write your own code by extending ViewGroup. There are some libraries in github
https://github.com/ApmeM/android-flowlayout