gpt4 book ai didi

android - 如何在应用程序中打开三星应用商店的链接

转载 作者:行者123 更新时间:2023-12-02 05:18:15 36 4
gpt4 key购买 nike

这是我的前代码

public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

Button web = (Button) findViewById(R.id.button1);

web.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View v) {
Intent intent = new Intent();
// set data
intent.setData(Uri.parse("http://apps.samsung.com/mars/appquery/appDetail.as?appId=com.example.hi"));

intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_INCLUDE_STOPPED_PACKAGES);

startActivity(intent);
}
});
}

我希望当我单击 web 按钮以使用三星商店作为直接链接打开此前应用程序时,而不是使用浏览器。

最佳答案

创建 Intent像这样:

@Override
public void onClick(View v) {
val intent = Intent(Intent.ACTION_VIEW, Uri.parse("samsungapps://ProductDetail/com.example.hi"))
startActivity(intent)
}

关于android - 如何在应用程序中打开三星应用商店的链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21064176/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com