How to exclude a specific application from ACTION_SEND Intent?

后端 未结 6 533
伪装坚强ぢ
伪装坚强ぢ 2020-12-19 04:55

I have used the following codes to exclude facebook app from my app chooser:

 List targetedShareIntents = new ArrayList();
    In         


        
6条回答
  •  执念已碎
    2020-12-19 05:20

    Android N (API 24) introduces blacklist Intent.EXTRA_EXCLUDE_COMPONENTS, which is better and simpler than whitelist Intent.EXTRA_INITIAL_INTENTS.

提交回复
热议问题