我有一个Android应用程序。我可以使用它将帖子添加到时间轴。每个这样的帖子都在下面留言“viaЖАЛОБАнк”。当我点击此链接时,打开此应用的页面。 如何在浏览器中打开Google Play或其他页面来安装此应用程序?
答案 0 :(得分:0)
您可以在用户点击链接时启动打开链接的意图。例如,您可以执行此操作onClick()
Intent fb = new Intent(Intent.ACTION_VIEW);
fb.setData(Uri.parse("http://facebook.com"));
startActivity(fb);
答案 1 :(得分:0)
我没有尝试,但这应该有效:
Intent intent = new Intent("android.intent.action.VIEW", Uri
.parse("https://play.google.com/store/apps/details?id=com.facebook.katana"));
startActivity(intent);