<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:id="@+id/htmlText"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textColor="#FFCC00" />
</FrameLayout>
textview のテキストを次のように設定すると:
setText(Html.fromHtml(htmlString));
スクロールしません。また、html に img タグがあると画像が表示されないのはなぜですか?
編集:
私はウェブビューに切り替えました:
WebView view = (WebView)findViewById(R.id.newsView);
view.loadData(htmlString,"text/html","UTF-8");
そして今、私はこれらの問題を解決しましたが、まだ他の問題があります:
1) アプリの背景が見えるように透明な背景を設定する方法を教えてください。
2)前景テキストの色を設定して、アプリの色を確認する方法を教えてください。
3) img タグの画像がビューに収まらない場合、横スクロールが発生します。代わりに、テキストは完全に塗りつぶされます。