Tutorials
-Apps with five or more top-level destinations-Apps with two or more levels of navigation hierarchy-Quick navigation between unrelated destinations XML Code <?xml version=”1.0″ encoding=”utf-8″?> <nl.psdcompany.duonavigationdrawer.views.DuoDrawerLayout android:id=”@+id/drawer”...
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); } });
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) {...