summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/a_provider_list.xml
blob: 867d6d8d90c4598ad8eca24994abbb1d91c2241c (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
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/provider_list_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".providersetup.ProviderListActivity"
    android:padding="@dimen/stdpadding"
    style="@style/BitmaskActivity"
    tools:viewBindingIgnore="true">

    <include layout="@layout/v_loading_screen" />

    <LinearLayout
        android:id="@+id/content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <se.leap.bitmaskclient.base.views.ProviderHeaderView
            android:id="@+id/header"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

        <ListView
            android:id="@+id/provider_list"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:drawSelectorOnTop="false"
            android:layout_marginTop="@dimen/standard_margin"
            />

    </LinearLayout>

</RelativeLayout>