aboutsummaryrefslogtreecommitdiffstats
path: root/app/res/layout/activity_credits.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/res/layout/activity_credits.xml')
-rw-r--r--app/res/layout/activity_credits.xml36
1 files changed, 32 insertions, 4 deletions
diff --git a/app/res/layout/activity_credits.xml b/app/res/layout/activity_credits.xml
index 04280d4..d114ce1 100644
--- a/app/res/layout/activity_credits.xml
+++ b/app/res/layout/activity_credits.xml
@@ -1,16 +1,44 @@
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
- android:background="@color/ThemeDark"
- android:orientation="vertical" >
+ android:background="@color/black"
+ android:padding="15dp" >
+
+ <TextView
+ android:id="@+id/txt_credits_title"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_centerHorizontal="true"
+ android:padding="2dp"
+ android:text="@string/text_presented_by"
+ android:textColor="@color/ThemeLight"
+ android:textColorLink="@color/ThemeLight"
+ android:textIsSelectable="true"
+ android:textSize="9pt" />
+
+ <ImageView
+ android:id="@+id/img_logo_fil"
+ android:layout_width="100dp"
+ android:layout_height="110dp"
+ android:layout_below="@id/txt_credits_title"
+ android:layout_centerHorizontal="true"
+ android:layout_margin="1dp"
+ android:contentDescription="fil\&apos;s logo"
+ android:src="@drawable/fil_logo" >
+ </ImageView>
<TextView
android:id="@+id/txt_credits"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
+ android:layout_below="@id/img_logo_fil"
+ android:layout_centerHorizontal="true"
+ android:padding="15dp"
android:scrollbars="vertical"
+ android:fadeScrollbars="false"
android:textColor="@color/ThemeLight"
android:textColorLink="@color/ThemeLight"
+ android:textIsSelectable="true"
android:textSize="7pt" />
-</LinearLayout> \ No newline at end of file
+</RelativeLayout> \ No newline at end of file