This is an example to demonstrate how we can add HTML in Android TextView using Java code,
- Add TextView to your Activity:
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <TextView android:id = "@+id/htmlView" android:layout_width = "wrap_content" android:layout_height = "wrap_content" /> </androidx.coordinatorlayout.widget.CoordinatorLayout>
- Now lets check the Java Code: src/MainActivity.java
public class MainActivity extends AppCompatActivity { String htmlCodeText = "<p style="background:green">Hello, this a HTML code!</p>"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); TextView htmlToTextView = findViewById(R.id.htmlView); htmlToTextView.setText(HtmlCompat.fromHtml(htmlCodeText, 0)); } }
More Posts related to Android,
- Increase Android Emulator Timeout time
- Android : Remove ListView Separator/divider programmatically or using xml property
- Error : Invalid key hash.The key hash does not match any stored key hashes
- How to Change Android Toast Position?
- Android Alert Dialog with Checkboxes example
- Android : No Launcher activity found! Error
- Android Development: Spinners with Example
- Failed to sync Gradle project Error:failed to find target android-23
- INSTALL_FAILED_INSUFFICIENT_STORAGE Android Error
- Disable Fading Edges Scroll Effect Android Views
- How to create Toast messages in Android?
- Channel 50 SMSes received every few minutes Android Phones
- Android xml error Attribute is missing the Android namespace prefix [Solution]
- Create Custom Android AlertDialog
- How To Disable Landscape Mode in Android Application
- Android Development - How to switch between two Activities
- incorrect line ending: found carriage return (\r) without corresponding newline (\n)
- Generate Facebook Android SDK keyhash using java code
- Android Error Generating Final Archive - Debug Certificate Expired
- 21 Useful Android Emulator Short-cut Keyboard Keys
- Android RatingBar Example
- 11 Weeks of Android Online Sessions-15-Jun-to-28-Aug-2020
- Download interrupted: Unknown Host dl-ssl.google.com Error Android SDK Manager
- fill_parent vs match_parent vs wrap_content
- Android : Connection with adb was interrupted 0 attempts have been made to reconnect
More Posts:
- 5 Ways to Loop a Dictionary in Python - Python
- Java 8 Streams map() with examples - Java
- Generate SHA-256 Hash and Salt in Java Example - Java
- Convert Java Object to XML using Jackson Library - Java
- How to update Cargo (Rust Lang) - Rust
- How to show Machintosh HD icon on Mac Desktop - MacOS
- How to lock Notepad++ tabs? - NotepadPlusPlus
- Fix [Mac Terminal] The operation couldn’t be completed. Unable to locate a Java Runtime. (update for Ventura/Sonoma) - Java