Expanding in response to @Chrishan, you can open a Twitter application to perform various uri-based functions (list below from)
twitter://user?screen_name=lorenb twitter://user?id=12345 twitter://status?id=12345 twitter://timeline twitter://mentions twitter://messages twitter://list?screen_name=lorenb&slug=abcd twitter://post?message=hello world twitter://post?message=hello world&in_reply_to_status_id=12345 twitter://search?query=%23hashtag
eg.
String uriStr = "twitter://post?message=hello world" try { startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(uriStr))); }catch (Exception e) {
NOTE. I just tried user and post , so if you come across something that doesn't work, let me know and I will update this answer.
source share