How to style text as bold in facebook feed

560 views Asked by At

I am developing an app where the user can share some text on his facebook account. I tried to bold some sentence using html () and using **. But nothing worked. Any ideas?

1

There are 1 answers

1
sasikumar On

That Kind of features still not provided By FaceBook API Integration Team.

Alternatively you can create custom url pass through link in url

 ShareLinkContent content = new ShareLinkContent.Builder()
    .setContentUrl(Uri.parse("your url"))
    .build();

Read more for more details Sharing on Android