Create a presentation somewhere that will advertise your version of Pro. Maybe this is an ImageView, maybe this is a button or link, whatever that is, just make sure that this is what the user can click.
Then follow these steps:
view.setOnClickListener( new OnClickListener(){ public void onClick(View v) { startActivity( new Intent( Intent.ACTION_VIEW, Uri.parse("market://search?q=pname:XXX") ) ); } }
... where XXX is the package name for your Pro application, as indicated in your AndroidManifest.xml.
When the user clicks the browse button, Android will launch your Pro application page in the market.
emmby
source share