程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> button-android中按鈕鏈接網頁的問題

button-android中按鈕鏈接網頁的問題

編輯:編程綜合問答
android中按鈕鏈接網頁的問題

我設置的兩個按鈕,其中一個鏈接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);
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved