显示字符串中的图像和文本并在textview中显示

时间:2018-11-19 12:56:30

标签: android

我有一个包含HTML标签的字符串

String html = "<h2><i>Title</i></h2><img src=/"https://www.w3schools.com/w3css/img_forest.jpg."><p>Description here</p>";

我需要在文本框中显示此图像和文本。不同的字符串具有不同的图像。该代码仅显示正方形而不是图片。

1 个答案:

答案 0 :(得分:1)

XML:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:weightSum="8">
    <TextView
        android:id="@+id/textView_atXML"
        android:layout_width="match_parent"
        android:layout_height="0"
        android:layout_weight="2"
        android:textAlignment="center"
        android:textSize="18sp" />
    <WebView
        android:id="@+id/webView_atXML"
        android:layout_width="match_parent"
        android:layout_height="0"
        android:layout_weight="6"/>
</LinearLayout>

活动:

public class MainActivity extends AppCompatActivity {
    TextView textView;
    WebView webView;
    String html;
    String urlImage;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        textView=findViewById(R.id.textView_atXML);
        webView=findViewById(R.id.webView_atXML);
        html = "<h2><i>Title</i></h2><img src='https://www.w3schools.com/w3css/img_forest.jpg'><p>Description here</p>";
        urlImage="https://www.w3schools.com/w3css/img_forest.jpg";
        textView.setText(html);
        webView.loadUrl(urlImage);

    }
}

在清单中,您必须征得使用互联网连接的许可:

<uses-permission android:name="android.permission.INTERNET" />