2010-10-19 23:24:04 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2015-11-24 18:11:58 +03:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2015-09-12 23:22:29 -07:00
|
|
|
|
|
|
|
<LinearLayout
|
2015-11-24 18:11:58 +03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="24dp"
|
|
|
|
android:paddingRight="24dp"
|
|
|
|
android:paddingTop="4dp"
|
|
|
|
android:orientation="vertical">
|
2015-09-12 23:22:29 -07:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:text="@string/about_version"
|
2015-11-24 18:11:58 +03:00
|
|
|
style="@style/CaptionText" />
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/version"
|
|
|
|
android:text="@string/unknown"
|
|
|
|
style="@style/BodyText" />
|
2015-09-12 23:22:29 -07:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:text="@string/about_site"
|
2015-11-24 18:11:58 +03:00
|
|
|
style="@style/CaptionText" />
|
2015-09-12 23:22:29 -07:00
|
|
|
<TextView
|
|
|
|
android:text="@string/site_link"
|
|
|
|
android:autoLink="web"
|
2015-11-24 18:11:58 +03:00
|
|
|
style="@style/BodyText" />
|
2015-09-12 23:22:29 -07:00
|
|
|
|
2015-11-24 18:11:58 +03:00
|
|
|
<TextView
|
|
|
|
android:text="@string/about_mail"
|
|
|
|
style="@style/CaptionText" />
|
|
|
|
<TextView
|
|
|
|
android:text="@string/team_email"
|
|
|
|
android:autoLink="email"
|
|
|
|
style="@style/BodyText" />
|
2015-09-12 23:22:29 -07:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:text="@string/about_source"
|
2015-11-24 18:11:58 +03:00
|
|
|
style="@style/CaptionText" />
|
2015-09-12 23:22:29 -07:00
|
|
|
<TextView
|
|
|
|
android:text="@string/source_link"
|
|
|
|
android:autoLink="web"
|
2015-11-24 18:11:58 +03:00
|
|
|
style="@style/BodyText" />
|
2015-09-12 23:22:29 -07:00
|
|
|
|
|
|
|
<TextView
|
2015-11-24 18:11:58 +03:00
|
|
|
android:text="@string/about_license"
|
|
|
|
style="@style/CaptionText" />
|
2015-09-12 23:22:29 -07:00
|
|
|
<TextView
|
2015-11-24 18:11:58 +03:00
|
|
|
android:text="@string/license_gplv3_later"
|
|
|
|
style="@style/BodyText" />
|
2015-09-12 23:22:29 -07:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2015-11-24 18:11:58 +03:00
|
|
|
</ScrollView>
|