在FlowTextView中对齐文本

时间:2015-02-17 10:10:01

标签: android textview justify

我使用库FlowTextView在Android中包装TextView。文本在布局中包裹着ImageView。我想证明文本的合理性,但我不知道如何做到这一点。我尝试使用Html.fromHtml,但它不起作用。

以下是布局代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:tools="http://schemas.android.com/tools" 
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:orientation="horizontal" 
   android:gravity="center">

  <uk.co.deanwild.flowtextview.FlowTextView
     android:id="@+id/flowtv"
     android:layout_width="match_parent"
     android:layout_height="match_parent" >

        <ImageView
            android:layout_width="100dp"
            android:layout_height="120dp"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:scaleType="centerInside"
            android:padding="5dp"
            android:id="@+id/imagePatrimonio"
            android:src="@drawable/ic_launcher"/>
  </uk.co.deanwild.flowtextview.FlowTextView>      
</LinearLayout>

这是在FlowTextView中设置文本的代码:

FlowTextView flowText = (FlowTextView) findViewById(R.id.flowtv);
flowText.setTextSize(27);
flowText.setColor(Color.WHITE);
Spanned spannable = Html.fromHtml("<html><body style='text-align:justify;'>" + strText + "</body></html>");
flowText.setText(spannable);

我可以做些什么来证明FlowTextView中的文本?

0 个答案:

没有答案