In my Android application, how can I extend the user to install another application in the Android market and install it After doing, can they come back to their activity?
You need to start an activity with the direction of the market:
string packagename = "com.stackoverflow.example"; Uri Bazaruri = Uri.Parse ("Market: // Search? Q = Pnam:" + Package Name); Intent Market Entent = New Intent (Intent. Action_View) .Set_Data (Market Yuri); StartActivity (marketIntent);
Change com.stackoverflow.example
with the package name of the target application.
Comments
Post a Comment