我是新来安卓的,我想看起来像这个自定义弹出窗口
这就是我想要的
在这里,我的问题是如何添加自定义图像和文本在上述弹出窗口时,我试图通过意向发送共享的东西。
这是我的代码我应该在这里更改什么?
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT,
"Intall COC!!"+"https://play.google.com/store/apps/details?id=com.supercell.clashofclans");
sendIntent.setType("text/plain");
startActivity(sendIntent);
1条答案
按热度按时间uplii1fm1#
检查你的android版本它只支持从android 11开始
使用以下代码