XML
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Chat" android:textSize="18sp" android:id="@+id/update"/>
JAVA
update.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { Intent update = new Intent(Intent.ACTION_VIEW,Uri.parse("https://play.google.com/store/apps/details?id=com.rbmjltd.edonner_blood")); startActivity(update); } });