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.
私のアプリケーションで、Playストアからアプリのダウンロードリンクを追加する方法。
元。私はアプリケーションパッケージ名をcom.test.abcとして知っています
ユーザーがそのリンクをクリックしたときに、パッケージ名com.test.abcのアプリがPlayストアからダウンロードされてインストールされるように、アプリケーションにリンクを提供したいと思います。
market://内部のプロトコルを使用する必要がありますIntent
market://
Intent
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id="+theAPPName));