Android 呼叫已安裝市場,進行軟體評分的功能實現

jia635發表於2014-10-31

開發中要用到的一個功能。呼叫手機上安裝的所有市場,然後對軟體進行評價。


本來以為一般的軟體都會有“去評分”、“親,給個好評”這樣的功能,

<span style="color:#333333;">		Uri uri = Uri.parse("market://details?id="+getPackageName());
		Intent intent = new Intent(Intent.ACTION_VIEW,uri);
		intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
		startActivity(intent);
</span>

通過以上程式碼就能夠列出您手機上所安裝的所有應用市場(如:google player、豌豆莢、360手機助手等),讓您選擇。

加點福利吧,把呼叫分享的程式碼也貼出來,免得以後到處找:

<span style="color:#333333;">		Intent sendIntent = new Intent();
		sendIntent.setAction(Intent.ACTION_SEND);
		sendIntent.setType("text/*");
		sendIntent.putExtra(Intent.EXTRA_TEXT, contentEditText.getText().toString());
		startActivity(sendIntent);</span>



相關文章