aboutsummaryrefslogtreecommitdiffstats
path: root/res/layout/listpage_layout.xml
blob: 6eb7e7ebf43e9fc55931d78d1bf553b823b4ce60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:background="@color/White"
              android:gravity="center_horizontal">

    <ListView
            android:id="@+id/listpage_listview"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:dividerHeight="1px"
            android:footerDividersEnabled="true"
            android:clickable="false"/>
</LinearLayout>