android aidl 进程通信 调用异常

android aidl 进程通信 调用错误

学了下aidl 怎么都NullPointExcption 哎 找一下发现少了

 

<application android:icon="@drawable/icon" android:label="@string/app_name">
		<service android:name=".TestService" > 
			<intent-filter><!-- AIDL完整路径名。必须指明,客户端能够通过AIDL类名查找到它的实现类 -->
 <action android:name="com.aidl.LoginServices" />
    		</intent-filter>
		</service>

	</application>

 加上这个 就行了 呵呵