2010-09-25 3 views

Répondre

3

Vous devez commencer une activité avec l'intention pointant sur le marché:

String packageName = "com.stackoverflow.example"; 
Uri marketUri = Uri.parse("market://search?q=pname:" + packageName); 
Intent marketIntent = new Intent(Intent.ACTION_VIEW).setData(marketUri); 
startActivity(marketIntent); 

Remplacer com.stackoverflow.example avec le nom du package d'application cible.

Questions connexes