Notice
Recent Posts
Recent Comments
목록전체 글 (991)
올해는 머신러닝이다.
AIDL이 뭘까나?
1. 인터페이스(aidl) 생성 2. 구현클래스 생성 3. 메니페스트에 적고 4. 엑티비티에서 해당 클래스를가져와서 5. 구현된 함수를 사용. 의 순서로 진행됩니다. 사실 엑티비티 레벨이니 서비스 레벨이니 신경안써도 돼는 작은 어플에서는 샤용할일이 없을듯. 1. aidl package hell.o; interface IPlusItService { int add(int a, int b); } 2. impl class package hell.o; import android.app.Service; import android.content.Intent; import android.os.IBinder; import android.os.RemoteException; public class PlusItService ..
Android/Tip&Tech
2010. 11. 3. 21:07