2012-05-02 117 views
4

我使用此URI來搜索Play商店,但Android docs未提及搜索特定類別(例如遊戲,音樂或書籍)的方式。搜索特定的Play商店類別

URI marketUri = Uri.parse("market://search?q= "); 

Play圖書播放音樂應用程式都打開Play商店應用他們正確的類別,因此,如果他們可以開到特定CATERGORY,那麼我想我可以搜索一個。有沒有人有這樣做的一些信息?

回答

6

我找到了解決方案。以下是我用於購買音樂類別的當前方法。

public static void shopFor(Context context, String artistName) { 
    String str = "https://market.android.com/search?q=%s&c=music&featured=MUSIC_STORE_SEARCH"; 
    Intent shopIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(String.format(str, Uri.encode(artistName)))); 
    shopIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
    shopIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK); 
    context.startActivity(shopIntent); 
}