aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/layout/select_categories.xml
blob: 3e797b2e14fe18bf56a18ec0c628cbcbf5a0a04a (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
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <org.wordpress.android.util.widgets.CustomSwipeRefreshLayout
        android:id="@+id/ptr_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ListView
            android:id="@android:id/list"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:cacheColorHint="#00000000"
            android:divider="@drawable/list_divider"
            android:dividerHeight="1px"
            android:textColor="#444444" />

    </org.wordpress.android.util.widgets.CustomSwipeRefreshLayout>

    <org.wordpress.android.widgets.WPTextView
        android:id="@+id/empty_view"
        style="@style/WordPress.EmptyList.Title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginBottom="@dimen/empty_list_title_bottom_margin"
        android:layout_marginLeft="@dimen/empty_list_title_side_margin"
        android:layout_marginRight="@dimen/empty_list_title_side_margin"
        android:text="@string/empty_list_default"
        android:visibility="gone"
        tools:visibility="visible" />

</FrameLayout>