From 34143a55a45b7ed751bcb6a92ddb645e22ae223a Mon Sep 17 00:00:00 2001 From: malverick Date: Sun, 14 May 2017 21:57:43 +0530 Subject: [PATCH] See signature for android class methods --- docs/source/api.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/source/api.rst b/docs/source/api.rst index 9f09a54..6608ba8 100644 --- a/docs/source/api.rst +++ b/docs/source/api.rst @@ -327,6 +327,13 @@ example:: Signature: ()V } +The signature for methods of any android class can be easily seen by following these +steps:: + + 1. $ cd path/to/android/sdk/ + 2. $ cd platforms/android-xx/ # Replace xx with your android version + 3. $ javap -s -classpath android.jar android.app.Activity # Replace android.app.Activity with any android class whose methods' signature you want to see + JVM options and the class path ------------------------------