diff options
Diffstat (limited to 'main/res/layout/about_changes_page.xml')
-rw-r--r-- | main/res/layout/about_changes_page.xml | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/main/res/layout/about_changes_page.xml b/main/res/layout/about_changes_page.xml index 544d338..04b5ff3 100644 --- a/main/res/layout/about_changes_page.xml +++ b/main/res/layout/about_changes_page.xml @@ -1,9 +1,11 @@ <?xml version="1.0" encoding="UTF-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" - android:padding="4dip" > + android:padding="4dip" + tools:context=".AboutActivity$ChangeLogViewCreator" > <LinearLayout android:layout_width="fill_parent" @@ -35,6 +37,21 @@ android:textColor="?text_color" android:textColorLink="?text_color_link" android:textSize="12sp" /> + + <TextView + android:id="@+id/changelog_github" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginBottom="5dip" + android:layout_marginLeft="10dip" + android:layout_marginRight="10dip" + android:clickable="true" + android:focusable="true" + android:linksClickable="true" + android:text="@string/changelog_github" + android:textColor="?text_color_link" + android:textColorLink="?text_color_link" + android:textSize="12sp" /> </LinearLayout> </ScrollView>
\ No newline at end of file |