我有一個應用程序與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
);
}
感謝
thaks!這正是我需要的! – 2012-01-19 09:56:00
很高興有幫助 – 2012-01-19 14:07:51