2019-09-25

【Android】引導使用者到 Google Play Store 商店

activity_main.xml
 
...
...

<ImageView
    android:id="@+id/imgPlay"
    android:src="@drawable/googleplay"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:onClick="opRetireClicked" />

...
...
 


MainActivity.java
// 引導至 Play Store
public void opRetireClicked(View v)
{
    Intent intent = new Intent(Intent.ACTION_VIEW);
    intent.setData(Uri.parse("market://details?id=com.example"));    // 替換為您的 APP 的 package name
    startActivity(intent);
}