0

I have a Single TextView it has a text Namanpeet Kaur commented on your item thread bangles

enter image description here


How to reduce the spacing between the lines...

Layout:

<TextView
                    android:id="@+id/txt_description"
                    style="@style/chatMessageUserMsg"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:gravity="left"
                    android:lineSpacingMultiplier="0.8"
                    android:textColor="@color/clr_txt_description"
                    android:textSize="14sp"
                    android:visibility="visible" />

Already tried: padding between TextView lines

Amrit kumar
  • 466
  • 6
  • 9
Devrath
  • 42,072
  • 54
  • 195
  • 297

1 Answers1

0

Try this one

android:includeFontPadding="false"
android:lineSpacingExtra="5dp"

you can use the spacing according to your need.

Andy Developer
  • 3,071
  • 1
  • 19
  • 39