English 中文(简体)
甲型六氯环己烷
原标题:Android application s exposed API or hooks
  • 时间:2011-05-18 04:42:50
  •  标签:
  • android

What is the best way to discover an Android application s API or hooks into/from the application?

具体来说,我期待着将参数或数据传递给申请,利用申请的具体职能,并将数据或参数退回到申请中。

有一些想法是想到的,但我不熟悉可以提供的东西,特别是安康。

  1. Contact an application s developer directly
  2. Somehow decompile the APK to browse the source
  3. Read any available documentation
最佳回答

3. 检查以下方面的现有办法:

Tool to re-engineer closed APK files http://code.google.com/p/android-apktool/

www.un.org/Depts/DGACM/index_spanish.htm 审查行动意图过滤器

  1. Lookup the app in some sort of application manager on your phone. Android System Info. If you go to the details of the app it will tell you where the apk is and the name of it. For instance, under the Email app you can see "Source: /system/app/Email.apk".
  2. To pull that off just do "adb pull /system/app/Email.apk Email.apk", to pull it to your current directory.
  3. Look at the Manifest.xml. Rename the apk to zip and unpack.
  4. Follow the instructions here: http://android.amberfog.com/?p=582
  5. Then you can read the decompiled Manifest.xml and look at the intent filters they are registering.
问题回答

氯乙烯的应用都是在自己的沙箱里进行的,因此,你不能仅仅任意称呼某些其他的安乐器应用功能,而是需要向你们公布。

如果你想履行另一个安乐施会的申请所提供的某些职能,你很可能需要从开发商那里听,如果他们有的话,很可能要从他们的公开文件中听到。

The correct way to do this is to use "intents". With an intent, you can launch another application (such as a barcode scanner) and the user interacts with it. Then, the application exits returning some data (such as the barcode). Try googling or see: http://www.vogella.com/articles/AndroidIntent/article.html





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签