Search code examples
androidbuttonsharerate

Android about button to rate on market


I am little confused with this code am looking for somenthing similar i have a button that i want it to say rate and when click it takes you to the android market where the user can rate my application, please help

Button bRate = (Button) findViewById(R.id.button7); 
bRate.setOnClickListener(new View.OnClickListener() { 
    //plus the code on the top here is my idea of the code 
}

Elipse is saying something is wrong and I understand that iI need to put my market link but the button still doesn't work

I couldn't post it on the same page here is the link for the original question

Use application to rate it on market


Solution

  • You have just add your app package name...

    https://play.google.com/store/apps/details?id=your packagename
    

    And call using Intent.ACTION_VIEW

    String str ="https://play.google.com/store/apps/details?id=com.zeustechnocrats.quickfoods";
    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(str)));