aboutsummaryrefslogtreecommitdiffstats
path: root/app/res/layout/activity_credits.xml
blob: d114ce1ff3a5c71994d3150b5d6f0eedcd254908 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    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" />

</RelativeLayout>