// 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(); //得到用户个人信息 String getUserInfo(); String logout();//注销 String validateToken();//验证Token String getDeviceID(); //子账户信息 String getChildsInfo(); }