2017-07-02 72 views
0

我希望我的用戶能夠按「其他遊戲」按鈕,並通過Google Play應用將其重定向到我的開發人員玩商店頁面。 我做了如下,但重定向不正確。如何從按鈕重定向到我的Play商店頁面?

final String appPackageName2 = "MyCompany%20Name"; // getPackageName() from Context or Activity object 
    try { 
      activity.startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://developer?id=" + appPackageName2))); 
    } catch (android.content.ActivityNotFoundException anfe) { 
      activity.startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/developer?id=" + appPackageName2))); 
    } 
+0

你是什麼意思「重定向不正確」? – yanivtwin

回答

1

要打開開發者頁面不同的是,看一個例子:

final String developer_id = "my_dev_id"; 

try { 

    activity.startActivity(
    new Intent(
     Intent.ACTION_VIEW, 
     Uri.parse("market://dev?id=" + developer_id) 
    ) 
); 

} catch (android.content.ActivityNotFoundException anfe) { 

    activity.startActivity(
    new Intent(
     Intent.ACTION_VIEW, 
     Uri.parse("https://play.google.com/store/dev?id=" + developer_id) 
    ) 
); 

} 

要獲得信息,請訪問您的developer page,在那裏你會找到你的ID和其他東西的所有信息。運氣。

Docs:Link to Google Play

+0

謝謝))我創建了開發者頁面。 –

相關問題