diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2013-08-21 21:31:58 +0200 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2013-08-21 21:31:58 +0200 |
| commit | f44d2bf4dc74e39143d3e6b65cf1ff64c06cf77b (patch) | |
| tree | 9c8c76eb562d48b5ccaa4f402f1b8b96f5d215cf /main/res/layout/about_changes_page.xml | |
| parent | 318a2a55fab34275964c4e1a74ae27c92a9863eb (diff) | |
| download | cgeo-f44d2bf4dc74e39143d3e6b65cf1ff64c06cf77b.zip cgeo-f44d2bf4dc74e39143d3e6b65cf1ff64c06cf77b.tar.gz cgeo-f44d2bf4dc74e39143d3e6b65cf1ff64c06cf77b.tar.bz2 | |
new: split about page into view pager page
Diffstat (limited to 'main/res/layout/about_changes_page.xml')
| -rw-r--r-- | main/res/layout/about_changes_page.xml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/main/res/layout/about_changes_page.xml b/main/res/layout/about_changes_page.xml new file mode 100644 index 0000000..544d338 --- /dev/null +++ b/main/res/layout/about_changes_page.xml @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:orientation="vertical" + android:padding="4dip" > + + <LinearLayout + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:orientation="vertical" > + + <TextView + android:id="@+id/changelog_master" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="left" + android:layout_margin="7dip" + android:linksClickable="true" + android:paddingLeft="3dip" + android:text="@string/changelog_master" + android:textColor="?text_color" + android:textColorLink="?text_color_link" + android:textSize="12sp" /> + + <TextView + android:id="@+id/changelog_release" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="left" + android:layout_margin="7dip" + android:linksClickable="true" + android:paddingLeft="3dip" + android:text="@string/changelog_release" + android:textColor="?text_color" + android:textColorLink="?text_color_link" + android:textSize="12sp" /> + </LinearLayout> + +</ScrollView>
\ No newline at end of file |
