Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/182.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android 准确地定位在谷歌play商店、一些应用的屏幕截图字段和“给这个应用打分”字段_Android_Google Play_Screenshot_Rate - Fatal编程技术网

Android 准确地定位在谷歌play商店、一些应用的屏幕截图字段和“给这个应用打分”字段

Android 准确地定位在谷歌play商店、一些应用的屏幕截图字段和“给这个应用打分”字段,android,google-play,screenshot,rate,Android,Google Play,Screenshot,Rate,我知道如何在Google Play的某个应用程序上定位,通过Android程序和超链接,比如: Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse("market://details?id="+ getPackageName().toString().trim())); startActivity(intent); 有没有一种方法可以精确定位其屏幕截图的

我知道如何在Google Play的某个应用程序上定位,通过Android程序和超链接,比如:

        Intent intent = new Intent(Intent.ACTION_VIEW);
        intent.setData(Uri.parse("market://details?id="+ getPackageName().toString().trim()));
        startActivity(intent);
有没有一种方法可以精确定位其屏幕截图的字段并对该应用程序字段进行评级? i、 e.直接跳转到Google Play页面内下面两个字段位置的超链接。 我想要的是通过程序指向这两个字段,以便更准确地指导用户,而不会产生混淆

例如,这是应用程序的主页及其屏幕截图。速率字段和特定的屏幕截图只是应用程序主页中的一些子字段或子链接。

-分析Google play的网页来源后,发现它可以通过[软件包名称]按此应用程序字段的速率定位。例如,对于谷歌应用程序:

但当从Android程序链接时,会显示错误消息,以查看此内容、安装和设置web浏览应用程序

        Intent intent = new Intent(Intent.ACTION_VIEW);
        intent.setData(Uri.parse("https://play.google.com/store/ereview?docId="+ getPackageName().toString().trim()));
        startActivity(intent);
-在GooglePlay中查找应用程序上的单个屏幕截图,如下面的链接所示

但是它没有箭头来逐个浏览。另一个问题是,如果开发人员更改屏幕截图,超链接也可能会更改