2016-08-24 22:05:35 +02:00
|
|
|
<android.support.v4.widget.NestedScrollView 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"
|
|
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
|
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
|
|
tools:context="com.github.dfa.diaspora_android.activity.AboutActivity$LicenseFragment">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2016-08-25 00:23:20 +02:00
|
|
|
<!--Vertical Padding-->
|
|
|
|
<android.support.v4.widget.Space
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/activity_vertical_margin" />
|
|
|
|
|
2016-08-24 22:05:35 +02:00
|
|
|
<com.github.dfa.diaspora_android.ui.HtmlTextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/fragment_license__license_content"
|
2016-08-25 00:23:20 +02:00
|
|
|
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Medium"
|
2016-08-24 22:05:35 +02:00
|
|
|
android:linksClickable="true"
|
|
|
|
android:autoLink="web"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</android.support.v4.widget.NestedScrollView>
|