Rating an android app within an application

前端 未结 2 1470
南旧
南旧 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: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);
    

提交回复
热议问题