1
0
Fork 0
mirror of https://github.com/gsantner/dandelion synced 2024-07-05 01:32:38 +02:00
dandelion/app/src/main/res/layout/fragment_about.xml

50 lines
2 KiB
XML
Raw Normal View History

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">
<!--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
android:id="@+id/fragment_about__app_name"
2016-08-24 22:05:35 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAlignment="center"
2016-08-24 22:05:35 +02:00
android:text="@string/diaspora_for_android"
style="@android:style/TextAppearance.DeviceDefault.Large"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/fragment_about__package_name"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/fragment_about__app_version"/>
<android.support.v4.widget.Space
android:layout_width="match_parent"
android:layout_height="32dp" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|end"
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Medium"
android:text="@string/lorem_ipsum"/>
2016-08-24 22:05:35 +02:00
</LinearLayout>
</android.support.v4.widget.NestedScrollView>