Android中打开并迁移到GooglePlay App的MyPage画面

             用如下的代码可以实现

            

public void moveToGooglePlay() throws Exception {
        	Intent i = new Intent("com.google.android.finsky.VIEW_MY_DOWNLOADS");
            i.setComponent(new ComponentName("com.android.vending","com.android.vending.AssetBrowserActivity"));
            i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            startActivity(i);
        }


以上 , 蒋彪@南京

2013-4-17


你可能感兴趣的:(Android中打开并迁移到GooglePlay App的MyPage画面)