Invoking activity from APK in another android application

前端 未结 2 1729
北海茫月
北海茫月 2021-01-13 17:47

I have an android application that starts an activity and is running well. I need other developers to be able to integrate my APK into their applications in such a way that

相关标签:
2条回答
  • 2021-01-13 18:34

    The best thing to do, IMHO, is declare a custom action in an in your activity's manifest. Something like:

    <activity android:name="Foo">
      <intent-filter>
        <action android:name="com.commonsware.android.THIS_IS_MY_ACTION" />
      </intent-filter>
    </activity>
    

    Then, your compatriots can launch it via that custom action:

    startActivity(new Intent("com.commonsware.android.THIS_IS_MY_ACTION"));
    

    By namespacing your action, you should not run into accidental conflicts with anyone else's app.

    0 讨论(0)
  • 2021-01-13 18:41

    I think you also need this inside of the filter:

        <category android:name="android.intent.category.DEFAULT" />
    
    0 讨论(0)
提交回复
热议问题