IPresonalInterface.aidl 402 Bytes
// IPresonalInterface.aidl
package com.hjx.personalcenter.service;

// Declare any non-default types here with import statements

interface IPresonalInterface {
        //测试AIDL
        String sayHello();
    	//UI view 所有的页面
    	String viewPage(String action);
    	//得到用户登录信息
    	String getSimpleUser();
    	//得到用户保卡信息
        String getcardUser();
}