使用fromHtml()在我的视图中文本不在中心

时间:2018-05-24 09:48:19

标签: android html xml android-layout fromhtml

我正在使用 fromHtml()设置textview,而我的TextView未设置在中心。在下面的图片中,你可以显示空间 paragraf 文本 文字很好,但 fromHtml ,其中某些空间不在中心。

像这样设置textview

txtOffer.text = Html.fromHtml(<h1>Hello i am using your app</h1>, Html.FROM_HTML_MODE_LEGACY)

这是xml代码

 <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/colorAccent"
            android:gravity="center">

            <android.support.v7.widget.AppCompatTextView
                android:id="@+id/txt_offer"
                style="@style/txt_heavy_oblique"
                android:gravity="center"
                android:padding="@dimen/ten_dp" 
                android:textColor="@android:color/white"
                android:textSize="@dimen/text_size_12" />

    </LinearLayout>

  <style name="txt_heavy_oblique" parent="ThemeOverlay.AppCompat.Light">
        <item name="android:textColor">@color/colorPrimaryText</item>
        <item name="android:textSize">@dimen/text_size_14</item>
        <item name="android:layout_width">match_parent</item>
        <item name="android:layout_height">wrap_content</item>
        <item name="android:textAppearance">@style/AvenirHeavyOblique</item>
    </style>

enter image description here

2 个答案:

答案 0 :(得分:0)

不在html中使用标记会产生边距问题。 如果你只需要不同的尺寸,你可以使用简单的或者你可以使用它多一次char。 示例:&#34;经典文本没问题,但更大更好&#34;。

答案 1 :(得分:0)

许多研究我发现了这个lib,它非常有用并解决了我的问题

  

https://github.com/PrivacyApps/html-textview

感谢@Avinash Ajay Pandey的支持。 :)