Android的 - 如何发布应用评分/评论市场从内部应用程序?

问题描述:

这是一个简单的问题。有没有一种方法,让用户在评论和评级或我的应用程序直接在我的应用程序中输入并具有数据回发到Android Market?如果是的话,会是什么$ C $下的样子,如果我用一个EditText视图,允许用户输入?如果没有,那么是我唯一的选择直接链接到我的应用程序中的市场(即用户点击我的应用程序与我的应用程序页面上显示的链接或按钮,Market应用程序启动)?例如:

This is a simple question. Is there a way to allow users to enter in a comment and or rating for my app from directly within my app and have that data posted back to the Android Market? If so, what would the code for that look like if I used an EditText view to allow user input? If not, then is my only other option directly linking to my app in the Market (i.e. the user clicks the link in my app, or a button, and the Market app launches with my app page displayed)? For example:

view.setOnClickListener( new OnClickListener(){
    public void onClick(View v) {
        startActivity( new Intent( Intent.ACTION_VIEW,
           Uri.parse("market://details?id=packagename") ) );
    }
}

*其中包名改为从清单我的应用程序的包名。

*where "packagename" is replaced by my app's package name from the manifest.

感谢。

我想也不会有一段时间的市场准入。这将需要进一步的特殊应用程序的权限(donwload,购买,率)为您的应用程序,然后下载和速度在市场上的任何应用程序。

I think there will not be market access for a while. That would need further special application permissions (donwload, buy, rate) as your app then could download and rate any app in the market.

由于存在很多安全投诉基于一个事实,即用户不读他们接受的权限是Android,我认为谷歌不会暴露在市场那么快,但通过一个著名的市场渠道的应用程序的用户。

As there are many security complaints an Android based on the fact that users doesn't read the Permissions they accept, I think Google would not expose the market that fast but channel the users through one well known market app.