I would like to know how to decrease or increase the text of ListView
.
In TextView
, android:textsize="15";
exists, what would be the equivalent property to textsize
in ListView
?
I have a lot of information to put into it and so putting a textsize
minor would solve my problem.
<ListView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/ltsunidades"
android:layout_below="@+id/txtselunidade"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_above="@+id/btnsairmenu"
android:layout_alignRight="@+id/txtselunidade"
android:layout_alignEnd="@+id/txtselunidade"
android:textsize=???
/>
The above property android:textsize
does not work in ListView
.