-
Notifications
You must be signed in to change notification settings - Fork 46
Open
Description
CHILD ITEM LAYOUT
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/clickableLable"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="@drawable/rounded_label_un_selected">
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/label_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:padding="5dp"
android:text="Chennai"
android:textColor="#515151"
android:textSize="14sp"
android:textStyle="normal" />
</LinearLayout>
IN MY ACTIVITY
RecyclerView rv = (RecyclerView) findViewById(R.id.rv);
FlowLayoutManager flowLayoutManager = new FlowLayoutManager();
flowLayoutManager.setAutoMeasureEnabled(true);
rv.setLayoutManager(flowLayoutManager);
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels