activity service receiver 的施用
activity service receiver 的应用manifest xmlns:androidhttp://schemas.android.com/apk/res/android
activity service receiver 的应用
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ye.HttpClientTest"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".HttpClientTest"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name="HttpClientTestService">
<intent-filter>
<action android:name="com.ye.HttpClientTest.HttpClientTestService"/>
</intent-filter>
</service>
</application>
<uses-permission android:name="android.permission.INTERNET" />
</manifest>