71 lines
2.4 KiB
XML
71 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.handmark.pulltorefresh.samples"
|
|
android:versionCode="2110"
|
|
android:versionName="2.1.1" >
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="4"
|
|
android:targetSdkVersion="15" />
|
|
|
|
<application
|
|
android:hardwareAccelerated="true"
|
|
android:icon="@drawable/icon"
|
|
android:label="@string/app_name" >
|
|
<activity
|
|
android:name=".LauncherActivity"
|
|
android:label="PullToRefresh Samples" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".PullToRefreshListActivity"
|
|
android:label="PtR ListView" >
|
|
</activity>
|
|
<activity
|
|
android:name=".PullToRefreshListFragmentActivity"
|
|
android:label="PtR ListView Fragment" >
|
|
</activity>
|
|
<activity
|
|
android:name=".PullToRefreshListInViewPagerActivity"
|
|
android:label="PtR ListView in ViewPager" >
|
|
</activity>
|
|
<activity
|
|
android:name=".PullToRefreshGridActivity"
|
|
android:label="PtR GridView" >
|
|
</activity>
|
|
<activity
|
|
android:name=".PullToRefreshExpandableListActivity"
|
|
android:label="PtR ExpandableListView" >
|
|
</activity>
|
|
<activity
|
|
android:name=".PullToRefreshWebViewActivity"
|
|
android:label="PtR WebView" >
|
|
</activity>
|
|
<activity
|
|
android:name=".PullToRefreshScrollViewActivity"
|
|
android:label="PtR ScrollView" >
|
|
</activity>
|
|
<activity
|
|
android:name=".PullToRefreshHorizontalScrollViewActivity"
|
|
android:label="PtR HorizontalScrollView" >
|
|
</activity>
|
|
<activity
|
|
android:name=".PullToRefreshViewPagerActivity"
|
|
android:label="PtR ViewPager" >
|
|
</activity>
|
|
<activity
|
|
android:name=".PullToRefreshWebView2Activity"
|
|
android:label="PtR WebView Advanced" >
|
|
</activity>
|
|
</application>
|
|
|
|
<!-- For WebView Sample -->
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<supports-screens android:anyDensity="true" />
|
|
|
|
</manifest> |