https://kotlinlang.org logo
Title
u

user

06/23/2022, 9:11 AM
How to get Callback share result in android How to get the intent callback sharing result, i have seen some code and implemented from my side. Below is the sample code try { Intent intent = new Intent(android.content.Intent.ACTION_SEND); intent.setType("text/plain"); intent.putExtra(Intent.EXTRA_TEXT, "Body"); startActivityForResult(Intent.createChooser(intent, "Choose"), 1); } catch (Exception e) { e.printStackTrace(); } Code for callback result @Override...