我想知道,有没有办法链接到kindle应用程序中的kindle书籍,以方便用户获取书籍?
而且,同样的优点是,有没有办法从kindle应用程序链接到kindle应用程序,以使用户下载应用程序最简单?
我应该使用特殊网址吗?
例如,这是我的应用之一: 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);
}
});
谢谢!
答案 0 :(得分:1)
要深入链接到特定应用的商店,您应该遵循linking to the Amazon AppStore格式。除了链接到应用程序,如果您使用ASIN,它似乎也正确链接到书籍(例如http://www.amazon.com/gp/mas/dl/android?asin=B000UVBSYQ)