As said in the title.
I want the minimum height of each cell to be 100dp but if the content inside of the cell increases beyond the height of 100dp I would like the cell to increase accordingly.
How is this done?
EDIT CODE:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="100dp"> <---- Change this
<ImageView
android:layout_width="90dp"
android:layout_height="90dp"
android:id="@+id/imageView2"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:src="@drawable/tn"/>
<TextView
android:layout_width="55dp"
android:layout_height="wrap_content"
try to this to calculate height dynamically