修正できないように見える小さなエラーがあります。
これが私のコードです
public void moreApps(View v) {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri
.parse("market://search?q=pub:dvir"));
startActivity(intent);
}
ここにあるアプリにリンクしたいだけです: https://play.google.com/store/apps/developer?id=Dvir
正しい構文は何ですか?
前もって感謝します!
ドヴィル