views:

166

answers:

1

Hello all,

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.

Thanks.

A: 

I think I also asked this here

http://stackoverflow.com/questions/2875630/android-how-to-post-app-rating-comments-to-market-from-within-app

Did you find a solution to the issue?

Paul Maidment
I have not found a solution other than to do what I posted in my question. I think this means, at present, in-app comments/ratings is impossible.
borg17of20