diff options
author | Dirk Dougherty <ddougherty@google.com> | 2010-04-01 09:50:15 -0700 |
---|---|---|
committer | Dirk Dougherty <ddougherty@google.com> | 2010-04-02 17:51:57 -0700 |
commit | fe1ffc3aadf14fbd402dced74663735174e1f533 (patch) | |
tree | 13ce455ca2b42e0d21c9dbe66a119058a902f4a4 /docs/html/guide/developing | |
parent | 352cf1a45e26803a466d096ca2d679ea5a3ac249 (diff) | |
download | frameworks_base-fe1ffc3aadf14fbd402dced74663735174e1f533.zip frameworks_base-fe1ffc3aadf14fbd402dced74663735174e1f533.tar.gz frameworks_base-fe1ffc3aadf14fbd402dced74663735174e1f533.tar.bz2 |
doc change: miscellaneous small fixes.
Change-Id: Iaa317261bdc20cefa38e022dfc275fea3acd97a2
Diffstat (limited to 'docs/html/guide/developing')
-rw-r--r-- | docs/html/guide/developing/tools/aidl.jd | 4 | ||||
-rw-r--r-- | docs/html/guide/developing/tools/emulator.jd | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/html/guide/developing/tools/aidl.jd b/docs/html/guide/developing/tools/aidl.jd index 19d9ea1..d3da285 100644 --- a/docs/html/guide/developing/tools/aidl.jd +++ b/docs/html/guide/developing/tools/aidl.jd @@ -161,10 +161,10 @@ private final IRemoteService.Stub mBinder = new IRemoteService.Stub(){ <p>A few rules about implementing your interface: </p> <ul> <li>No exceptions that you throw will be sent back to the caller.</li> - <li>IPC calls are synchronous. If you know that an IPC service takes more than + <li>By default, IPC calls are synchronous. If you know that an IPC service takes more than a few milliseconds to complete, you should not call it in the Activity/View thread, because it might hang the application (Android might display an "Application - is Not Responding" dialog). + is Not Responding" dialog). Try to call them in a separate thread. </li> <li>Only methods are supported; you cannot declare static fields in an AIDL interface.</li> </ul> diff --git a/docs/html/guide/developing/tools/emulator.jd b/docs/html/guide/developing/tools/emulator.jd index 507353e..dbfc8ef 100644 --- a/docs/html/guide/developing/tools/emulator.jd +++ b/docs/html/guide/developing/tools/emulator.jd @@ -7,7 +7,7 @@ page.title=Android Emulator that runs on your computer. The emulator lets you prototype, develop, and test Android applications without using a physical device. </p> -<p>The Android emulator mimics all of the typical hardware and software features +<p>The Android emulator all of the hardware and software features of a typical mobile device, except that it can not receive or place actual phone calls. It provides a variety of navigation and control keys, which you can "press" using your mouse or keyboard to generate events for your application. It also |