Computer >> 컴퓨터 >  >> 프로그램 작성 >> Android

Android의 TextView에 HTML을 표시하는 방법은 무엇입니까?


경우에 따라 Android에서 HTML을 텍스트로 표시해야 합니다. 다음은 Android의 TextView에 HTML을 표시하는 간단한 솔루션입니다.

1단계 − Android Studio에서 새 프로젝트를 만들고 파일 ⇒ 새 프로젝트로 이동하여 필요한 모든 세부 정보를 입력하여 새 프로젝트를 만듭니다.

2단계 − res/layout/activity_main.xml에 다음 코드를 추가합니다.

<?xml version = "1.0" encoding = "utf-8"?>
<LinearLayout xmlns:android = "https://schemas.android.com/apk/res/android"
   xmlns:tools = "https://schemas.android.com/tools"
   android:id = "@+id/rootview"
   android:layout_width = "match_parent"
   android:layout_height = "match_parent"
   android:orientation = "vertical"
   tools:context = ".MainActivity">
   <TextView
      android:id = "@+id/htmlToTextView"
      android:layout_width = "wrap_content"
      android:layout_height = "wrap_content" />
</LinearLayout>

3단계 − src/MainActivity.java

에 다음 코드 추가
package com.example.andy.myapplication;
import android.os.Bundle;
import android.support.v4.text.HtmlCompat;
import android.support.v7.app.AppCompatActivity;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
   String htmlText = "<h2>What is Android?</h2>\n" + "<p>Android is an open source and Linux-based <b>Operating System</b> for mobile devices such as smartphones and tablet computers.
Android was developed by the <i>Open Handset Alliance</i>, led by Google, and other companies.</p>\n" + "<p>Android offers a unified approach to application development for mobile devices which means developers need only develop for Android, and their applications should be able to run on different devices powered by Android.</p>\n" + "<p>The first beta version of the Android Software Development Kit (SDK) was released by Google in 2007 whereas the first commercial version, Android 1.0, was released in September 2008.</p>";
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      TextView htmlToTextView = findViewById(R.id.htmlToTextView);
      htmlToTextView.setText(HtmlCompat.fromHtml(htmlText, 0));
   }
}

위의 예에서는 아래와 같이 HTML 태그를 문자열에 htmlText로 유지하고 문자열을 textview에 추가했습니다.

htmlToTextView.setText(HtmlCompat.fromHtml(htmlText, 0));

위의 코드에서 우리는 fromHtml() 에서 HTML 데이터를 가져오고 setText() 를 사용하여 textview에 추가합니다. 0은 플래그입니다. 프로젝트 리소스별로 플래그를 할당할 수 있습니다.

응용 프로그램을 실행해 보겠습니다. 실제 Android 모바일 장치를 컴퓨터에 연결했다고 가정합니다. Android 스튜디오에서 앱을 실행하려면 프로젝트의 활동 파일 중 하나를 열고 도구 모음에서 실행 아이콘을 클릭합니다. 모바일 장치를 옵션으로 선택한 다음 기본 화면을 표시할 모바일 장치를 확인하십시오 -

Android의 TextView에 HTML을 표시하는 방법은 무엇입니까?

위의 예에서는 HTML 태그를 문자열로 표시합니다.