csh_34 2012-12-10 05:14 采纳率: 0%
浏览 5655
已采纳

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);

大家能帮我看看,问题出在哪里吗?

  • 写回答

2条回答

  • Billy_崔海斌 2012-12-10 07:03
    关注

    try this:

    i1.addCatogory(Intent.CATEGORY_BROWSABLE);
    i1.setFlag(Intent.FLAG_ACTIVITY_NEW_TASK);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥50 永磁型步进电机PID算法
  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥200 uniapp长期运行卡死问题解决
  • ¥15 latex怎么处理论文引理引用参考文献
  • ¥15 请教:如何用postman调用本地虚拟机区块链接上的合约?
  • ¥15 为什么使用javacv转封装rtsp为rtmp时出现如下问题:[h264 @ 000000004faf7500]no frame?