我想知道是否有人知道如何在Android中使TextView合理化,TextViews在LinearLayout的ScrollView中。
我在网上看过,我可能需要切换到WebView才能使其正常工作。 但那些帖子似乎有点过时,也许从那时起安装了新的东西
此外,如果有人知道这是否可能,我还需要能够放大ScrollView。
谢谢!
答案 0 :(得分:0)
没有直接的方法来证明android中的文本。你可以在textview.setText()上使用HTML标签;
<p align="left|right|center|justify">This is some text in a paragraph.</p>
但是你可以使用属性 - 重力
进行中心对齐<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="paragraph"
android:gravity="center"
/>
你layout_width应该是match_parent才能获得正确的结果。
答案 1 :(得分:0)