0

I am trying to create some application which is implementing QuickMemo feature from LG (Optimus G in my case).

Can I create some listener for button to launch QuickMemo? I can run it by pressing both volume up and volume down keys at the same time, but how to do it from my activity?

1 Answers1

0

You should have a look at this application manifest file if its possible and check the activities for android:exported value and check its intent filters. This will tell whether you are allowed to launch it from another app.

This post might help you How to view AndroidManifest.xml from APK file?

You can directly use aapt l -a name.apk command to see the manifest.xml.

This link might help http://elinux.org/Android_aapt

(This will also dump the resource table.)

Community
  • 1
  • 1
Taras Leskiv
  • 1,835
  • 15
  • 33