I am using the Facebook SDK to create a sharedialog with a sharecontent. However, how should i display editable text in the share dialog. I'm able to show links and all. I just don't know how to set a custom text which the user can edit.
ShareLinkContent content = new ShareLinkContent.Builder()
.setContentTitle("App Name")
.setContentDescription("Hi!! This is app")
.setContentUrl(Uri.parse("http://www.fsdfvdsf.com"))
.build();
shareDialog.show(content);