share data between application using android studio how to add share button in android app how to transfer data from one app to another in android simple share button example using android studio android share button coding
Source Code here:
Intent i = new Intent(Intent.ACTION_SEND);
i.setType("text/plain");
String sharebody = "look all Programmings";
String subject = "http://www.youtube.com/avadhtutor/pla...";
i.putExtra(Intent.EXTRA_SUBJECT,sharebody);
i.putExtra(Intent.EXTRA_TEXT,subject);
startActivity(Intent.createChooser(i,"AVADH TUTOR"));
Look all programming and scripting languages inside youtube.com/avadhtutor/playlists
#sharebuttonandroidexample #sharedatabetweenapplicationandroidstudio #androidsharebutton #androidstudio #androidtutorial