Add Facebook Messenger in android studio or android app
XML
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Chat" android:textSize="18sp" android:id="@+id/chat"/>
JAVA
chat.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { String facebookId = "https://m.me/RBMJ.Ltd"; String urlPage = "https://m.me/RBMJ.Ltd"; try { startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(facebookId))); }catch (Exception e){ startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(urlPage))); } } });