aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fragment_home_screen.xml
blob: d9db3839cffb4ce922c77a0c343bd4587562424b (plain) (blame)
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
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    tools:context="org.rssin.android.HomeScreenActivity.AllFeedsFragment"
    android:id="@+id/refreshlayout"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:padding="0dp"
    android:orientation="vertical">

    <TextView
        android:id="@+id/loading"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/loading"
        android:visibility="visible"
        android:padding="@dimen/listview_item_padding"
        android:textSize="@dimen/font_size_normal"
        android:gravity="center_horizontal"
        android:background="@drawable/msg_loading"/>

    <android.support.v7.widget.RecyclerView
        android:id="@+id/unified_inbox_feeditems"
        android:scrollbars="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

</LinearLayout>