24 lines
912 B
XML
24 lines
912 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".ui.fragment.ChangelogFragment">
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/content_left_margin"
|
|
android:layout_marginRight="@dimen/content_right_margin"
|
|
android:paddingTop="8dp"
|
|
android:paddingBottom="8dp">
|
|
|
|
<org.sufficientlysecure.htmltextview.HtmlTextView
|
|
android:id="@+id/changelogText"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@android:style/TextAppearance.Small"/>
|
|
</FrameLayout>
|
|
|
|
</ScrollView>
|