最終更新:2017-03-28 (火) 19:06:55 (2591d)  

IMyAidlInterface.aidl
Top / IMyAidlInterface.aidl

// IMyAidlInterface.aidl
package com.example.test.aidl_sample;

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

interface IMyAidlInterface {
    /**
     * 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);
}