准确定位于Google Play商店,某些应用的屏幕截图字段以及"评价此应用"领域

时间:2018-01-21 15:48:32

标签: android google-play screenshot rate

我知道如何通过带有超级链接的Android程序找到Google Play中的某个应用,例如:

        Intent intent = new Intent(Intent.ACTION_VIEW);
        intent.setData(Uri.parse("market://details?id="+ getPackageName().toString().trim()));
        startActivity(intent);

有没有办法准确定位其"屏幕截图"和"评价此应用"领域? 即超链接直接跳转到Google Play页面内的以下两个字段位置。 我想要的是通过程序指导这两个领域,以更准确地引导用户而不会产生混淆。

After you you tap on the screenshots the rate and review field

例如,这是应用程序的主页面及其屏幕截图。费率字段和某个特定的屏幕截图只是应用主页面中的一些子字段或子链接。 https://play.google.com/store/apps/details?id=com.google.android.googlequicksearchbox the app's main page

1 个答案:

答案 0 :(得分:0)

- 在分析Google Play的网页来源后,发现它可以位于此应用的评分范围内。字段https://play.google.com/store/ereview?docId= [包名称]。比如Google应用:

https://play.google.com/store/ereview?docId=com.google.android.googlequicksearchbox

但是从Android程序链接时,会出现错误消息"要查看此内容,请安装并设置网络浏览应用。"

        Intent intent = new Intent(Intent.ACTION_VIEW);
        intent.setData(Uri.parse("https://play.google.com/store/ereview?docId="+ getPackageName().toString().trim()));
        startActivity(intent);

- 找到Google Play中应用的各个屏幕截图,如下面的链接

https://lh3.googleusercontent.com/QeWRpD6LfSl8p98A_4f-QI6M2ayyyJ3FvNplG6Sww_iczHFHOJZimuEcaj0z9hwh5g=h900-rw

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