如何用android中的Image下面的内容填充空白区域

Vic*_*tor 17 android android-layout xml-layout

我的xml布局中有一个ImageView和一个TextView.我想在下面显示我在ImageView右侧通过webservice获得的文本.我可以使用那个TextView显示该文本吗?

在此输入图像描述

我试图在xml布局中给android:singleLine ="false"但没有用.

Tal*_*lha 22

http://code.google.com/p/android-flowtextview/

在此输入图像描述

用法示例:

 <com.pagesuite.flowtext.FlowTextView
     android:id="@+id/tv"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content" >

     <ImageView
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_alignParentLeft="true"
         android:layout_alignParentTop="true"
         android:padding="10dip"
         android:src="@drawable/android" />

     <ImageView
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_alignParentRight="true"
         android:layout_marginTop="400dip"
         android:padding="10dip"
         android:src="@drawable/android2" />

</com.pagesuite.flowtext.FlowTextView>
Run Code Online (Sandbox Code Playgroud)

你的代码:

对于文本:

tv = (FlowTextView) findViewById(R.id.tv);                  
tv.setText("my string"); // using plain text    
tv.invalidate(); // call this to render the text
Run Code Online (Sandbox Code Playgroud)

对于HTML:

tv = (FlowTextView) findViewById(R.id.tv);              
Spanned spannable = Html.fromHtml("<html ... </html>");
tv.setText(spannable);  // using html
tv.invalidate(); // call this to render the text
Run Code Online (Sandbox Code Playgroud)