xml レイアウトに 1 つの ImageView と 1 つの TextView があります。ImageView の右側に Web サービスで取得した以下のテキストを表示したいと思います。その1つの TextView を使用してそのテキストを表示できますか?
xml レイアウトで android:singleLine="false" を指定しようとしましたが、使用しませんでした。
xml レイアウトに 1 つの ImageView と 1 つの TextView があります。ImageView の右側に Web サービスで取得した以下のテキストを表示したいと思います。その1つの TextView を使用してそのテキストを表示できますか?
xml レイアウトで android:singleLine="false" を指定しようとしましたが、使用しませんでした。
https://github.com/deano2390/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>
あなたのコード:
テキスト用:
tv = (FlowTextView) findViewById(R.id.tv);
tv.setText("my string"); // using plain text
tv.invalidate(); // call this to render the text
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
これはここで議論されています: Textview は View をラップし 、ここではテキストビューを img ビューの周りにラップします
どうやら、解決策は説明されているように Spannable と ImageSpan を使用することです この回答Textview wrap around View
別の解決策は、webview を使用して html でレイアウトすることです。