我設置的兩個按鈕,其中一個鏈接Twitter URL,另一個按鈕鏈接Play Store URL。鏈接Twitter的按鈕可以正常鏈接,但是Play Store按鈕不能鏈接。
使用的如下代碼:
//TWITTER BUTTON
Button bt1 = (Button) findViewById(R.id.bTwitter);
bt1.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// TODO Auto-generated method stub
sendToTwitter();
}
});
}
protected void sendToTwitter() {
String url = "http://twitter.com/neilk27";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);
//DONATE BUTTON
Button bd1 = (Button) findViewById(R.id.bDonate);
bd1.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// TODO Auto-generated method stub
sendToStore();
}
});
}
protected void sendToStore() {
String url1 = "https://play.google.com/store/apps/developer?id=NK+Apps";
Intent i1 = new Intent(Intent.ACTION_VIEW);
i1.setData(Uri.parse(url1));
startActivity(i1);
大家能幫我看看,問題出在哪裡嗎?
try this:
i1.addCatogory(Intent.CATEGORY_BROWSABLE);
i1.setFlag(Intent.FLAG_ACTIVITY_NEW_TASK);