Rating an android app within an application

前端 未结 2 1460
南旧
南旧 2020-12-18 12:49

I am trying to have the functionality where I can allow the users to rate my app from my application. I am not concentrating on the usual android market pointing and then do

相关标签:
2条回答
  • 2020-12-18 13:33

    An app can't rate itself, only the user can do so; this approach reduces abuse. Apps normally ask them to go to Android Market to rate them, as they reduce the abuse factor. In one app, however, I've been told that I will get a bonus if I rate that app a certain way (for example, five stars).

    0 讨论(0)
  • 2020-12-18 13:34

    This is how we can rate an app, the one suggested in the android official site.

      Intent intent = new Intent(Intent.ACTION_VIEW);
      intent.setData(Uri.parse("market://details?id=com.test(This is the package name)"));
      startActivity(intent);
    
    0 讨论(0)
提交回复
热议问题