mirror of
https://github.com/moparisthebest/k-9
synced 2024-12-04 06:52:18 -05:00
22 lines
869 B
XML
Executable File
22 lines
869 B
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent" >
|
|
|
|
<!-- The PullToRefreshGridView replaces a standard GridView widget. -->
|
|
<com.handmark.pulltorefresh.library.PullToRefreshGridView
|
|
xmlns:ptr="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/pull_refresh_grid"
|
|
android:layout_height="fill_parent"
|
|
android:layout_width="fill_parent"
|
|
android:numColumns="auto_fit"
|
|
android:verticalSpacing="1dp"
|
|
android:horizontalSpacing="1dp"
|
|
android:columnWidth="100dp"
|
|
android:stretchMode="columnWidth"
|
|
android:gravity="fill"
|
|
ptr:ptrMode="both"
|
|
ptr:ptrDrawable="@drawable/android" />
|
|
|
|
</LinearLayout> |