Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のAndroidアプリケーションでAndroidマーケットに接続するにはどうすればよいですか?
Androidマーケットアプリを起動して、マーケットにある特定のアプリケーションをポイントしたいと思います。
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=com.test.TestApp")); startActivity(intent);
「com.test.TestApp」を、指定するアプリケーションのパッケージ名に置き換えます。