【发布时间】:2021-11-18 21:50:32
【问题描述】:
我想使用 android 代码访问 whatsapp 的 dp(个人资料图片)选项,我使用了该代码
代码
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_STREAM,uri);
intent.setPackage("com.whatsapp");
intent.setType("image/*");
startActivity(intent);
但每次打开时都使用共享图像选项而不是在 whatsapp 中更改 dp 图片选项我不知道我在哪里做错了我希望这里的任何人都可以帮助我。谢谢
各位,我更正了我到底在问什么
【问题讨论】:
-
你不能通过其他应用更改它
标签: android whatsapp profile-picture