在我的Android应用中,我使用TextView来显示一些信息。我遇到的问题如下:我的文字中的某些单词与最后一个单词相差很远,而其他单词与其他单词完全对齐,如下例所示:
Hello, how are you?
我的代码如下:
<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 you want this app to access microphone? (By using this feature ..........................,
because all you need to do is to propulsion .........." />
</RelativeLayout>
我该如何解决这个问题? 谢谢