summaryrefslogtreecommitdiff
path: root/res/layout/fragment_comics_list.xml
blob: cdef2870a8c8026f6ca9953106e7c02aa156aab6 (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
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/FrameLayout4"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <ListView
        android:id="@+id/comics_list"
        android:layoutAnimation="@anim/layout_comics"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
    </ListView>

    <LinearLayout
        android:id="@+id/no_comics"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="center"       
        android:orientation="vertical"
        android:padding="4dp" >

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:text="@string/error_no_comic_arhives_found_" />

    </LinearLayout>

</FrameLayout>