SmsForwarder/app/src/main/res/layout/fragment_markdown.xml
2022-06-06 16:56:20 +08:00

19 lines
707 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/xui_config_color_background"
android:orientation="vertical">
<androidx.core.widget.NestedScrollView style="@style/ScrollViewStyle">
<br.tiagohm.markdownview.MarkdownView
android:id="@+id/markdown_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:escapeHtml="true" />
</androidx.core.widget.NestedScrollView>
</LinearLayout>