2012-01-16 226 views
0

我有一個應用程序與phonegap構建和我需要打開市場後,用戶在提醒對話框中觸摸按鈕...我可以這樣做嗎?怎麼樣?phonegap - 安卓市場

我看到谷歌是不可能性與在網頁上的鏈接,但我需要這個對話框中......

這是我的對話框:

function onConfirm(button) { 
     if(button == 1) 
      alert('market'); 
    } 


function showPrimoAvvio() { 
    navigator.notification.confirm(
     'Se ti piace questa app ti chiediamo di lasciare un voto e un commento positivo nel market per aiutarci a sviluppare applicazioni sempre migliori!!', // message 
     onConfirm,    // callback to invoke with index of button pressed 
     'Votami!',   // title 
     'Vota,Prosegui'   // buttonLabels 
    ); 
} 

感謝

回答

2

在你onConfirm方法檢查完該按鈕== 1,你可以只設置:

document.location.href="market://search?q=google" 

比如做Android市場上的搜索通過谷歌應用程序。要鏈接到一個特定的應用程序,你會怎麼做:

document.location.href="market://details?id=com.example.admob.lunarlander" 

其中com.example.admob.lunarlander是應用程序的包名。

+0

thaks!這正是我需要的! – 2012-01-19 09:56:00

+0

很高興有幫助 – 2012-01-19 14:07:51

0

你可以誠實地打開market.android.com網址,用戶將能夠選擇「與市場開放」。

嘗試通過瀏覽器並輸入URL!這可能是一個工作,直到你可以找出如何繞過,直接去應用程序本身。