diff options
author | Sam Whited <sam@samwhited.com> | 2014-11-04 12:08:30 -0500 |
---|---|---|
committer | Sam Whited <sam@samwhited.com> | 2014-11-04 12:48:46 -0500 |
commit | f10dd428bab50a05883a9f7f3d65db085e2e5359 (patch) | |
tree | f6e0c4c56d77732bcbe455fe9d2de9c961075dfa /src/main/res/layout/activity_about.xml | |
parent | 97b4b012d0128232f16988d7b8742ac5c50d3e48 (diff) |
Convert about dialog to activity
Diffstat (limited to 'src/main/res/layout/activity_about.xml')
-rw-r--r-- | src/main/res/layout/activity_about.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/main/res/layout/activity_about.xml b/src/main/res/layout/activity_about.xml new file mode 100644 index 00000000..c1315b5a --- /dev/null +++ b/src/main/res/layout/activity_about.xml @@ -0,0 +1,16 @@ +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" + tools:context="eu.siacs.conversations.ui.AboutActivity" + android:paddingLeft="@dimen/activity_horizontal_margin" + android:paddingRight="@dimen/activity_horizontal_margin" + android:paddingTop="@dimen/activity_vertical_margin" + android:paddingBottom="@dimen/activity_vertical_margin" + android:layout_width="match_parent" + android:layout_height="wrap_content"> + + <TextView + android:text="@string/pref_about_message" + android:layout_width="wrap_content" + android:layout_height="wrap_content" /> + +</ScrollView> |