我想知道,有没有一种方法可以从kindle应用程序链接到kindle图书,以便用户轻松获取图书?
同样,有没有一种方法可以从kindle应用程序链接到kindle应用程序,使用户下载应用程序变得最简单?
有没有我应该使用的特殊url?
例如,这是我的一个应用程序:http://www.amazon.com/Problemio-com-Funding-Fundraising-Ideas/dp/B00AKRD1NQ
如何从其他Kindle应用程序正确链接到它?
我可以做这样的事情,但我相信有更好的方法,对吧?
Button b = (Button)findViewById(R.id.b);
b.setOnClickListener(new Button.OnClickListener()
{
public void onClick(View v)
{
Intent browserIntent = new Intent(Intent.ACTION_VIEW,
Uri.parse("http://www.amazon.com/Problemio-com-Funding-Fundraising-Ideas/dp/B00AKRD1NQ"));
startActivity(browserIntent);
}
});谢谢!
发布于 2014-06-30 06:46:15
要深度链接到特定应用程序的商店,您应该遵循linking to the Amazon AppStore格式。除了链接到应用程序,它似乎也正确链接到图书,如果你使用ASIN (例如http://www.amazon.com/gp/mas/dl/android?asin=B000UVBSYQ)
https://stackoverflow.com/questions/24477521
复制相似问题