Android - Uniform word spacing TextView -
in android app i'm using textview display info. problem have following: words of text appear far last one, while others keep aligned others, in example:
hello, how you?
my code follows:
<relativelayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <textview android:id="@+id/my_tv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textsize="17sp" android:layout_centerhorizontal="true" android:text="do want app access microphone? (by using feature .........................., because need propulsion .........." /> </relativelayout>
how can fix this? thank you
Comments
Post a Comment