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$AboutFragment">
|
|
|
|
|
|
|
|
<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
|
|
|
<TextView
|
2016-08-25 00:23:20 +02:00
|
|
|
android:id="@+id/fragment_about__app_name"
|
2016-10-14 01:26:56 +02:00
|
|
|
style="@android:style/TextAppearance.DeviceDefault.Large"
|
2016-08-24 22:05:35 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/diaspora_for_android"
|
2016-10-14 01:26:56 +02:00
|
|
|
android:textAlignment="center" />
|
2016-08-24 22:05:35 +02:00
|
|
|
|
|
|
|
<TextView
|
2016-10-14 01:26:56 +02:00
|
|
|
android:id="@+id/fragment_about__app_version"
|
2016-08-24 22:05:35 +02:00
|
|
|
android:layout_width="match_parent"
|
2016-10-14 01:26:56 +02:00
|
|
|
android:layout_height="wrap_content" />
|
2016-08-25 00:23:20 +02:00
|
|
|
|
|
|
|
<android.support.v4.widget.Space
|
|
|
|
android:layout_width="match_parent"
|
2016-08-26 17:08:57 +02:00
|
|
|
android:layout_height="16dp" />
|
2016-08-25 00:23:20 +02:00
|
|
|
|
2016-08-26 17:08:57 +02:00
|
|
|
<com.github.dfa.diaspora_android.ui.HtmlTextView
|
2016-10-13 16:56:31 +02:00
|
|
|
android:id="@+id/fragment_about__about_text"
|
2016-10-14 01:26:56 +02:00
|
|
|
style="@android:style/TextAppearance.DeviceDefault.Small"
|
2016-08-25 00:23:20 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2016-10-14 01:26:56 +02:00
|
|
|
android:linksClickable="true"
|
|
|
|
android:text="@string/fragment_about__about_content" />
|
2016-08-24 22:05:35 +02:00
|
|
|
</LinearLayout>
|
|
|
|
</android.support.v4.widget.NestedScrollView>
|