Hi every one ,
I am a comer on android dev.
My English is not good.
Below is description of my question.
How to start a dialog from Service base on AIDL ?
I want to develop a AIDL project.
The Client can calls show_dialog() method. The show_dialog() can shows some dialogs that satisfy client's demand.
First, the Client(Service/Activity) call the show_dialog() in Server(Service) and
when the method be called by Client then the Server will show a dialog.
After show the dialog, the user may click some button (cancel or ok) at the same time.The result value of clicking(ex: cancel is 0 and ok is 1) will be response to client.
So, How to show a dialog in Service ? and
How can I do that response the result value of clicking to Client?
Tks for all

