您的当前位置:首页正文

【Android支持】AIDL文件无法生成Java接口代码

2024-11-19 来源:个人技术集锦

版本Android Studio Dolphin | 2021.3.1 Patch 1
这个版本右键就可以创建AIDL文件——自动创建一个aidl文件夹(自动生成包路径),自动生成AIDL文件

// IStudent.aidl
package com.daban.remoteservice;

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

interface IStudent {
    /**
     * Demonstrates some basic types that you can use as parameters
     * and return values in AIDL.
     */
    void basicTypes(int anInt, long aLong, boolean aBoolean, float aFloat,
            double aDouble, String aString);
}

我们改成我们需要的模式

package com.daban.remoteservice;
import com.daban.remoteservice.Student;
interface IStudentService {
    Student getStudentById(int id);
}

这个文件如果要引用自定义类Student,需要import导入类
并且创建一个自定义类的AIDL文件,内容如下

package com.daban.remoteservice;
parcelable Student;

无法生成接口文件的其他原因我不知道
我的原因时gradle的问题

Top