Ahmet B.
Ahmet B.

Reputation: 1674

How can I just open SMS inbox in Android

I want just to open SMS application inbox in Android when I click a button. Many answers are about reading the SMSs or writing a new SMS but I want only to access/open SMS inbox. How can I do it?

Upvotes: 0

Views: 116

Answers (1)

Ashish Sharma
Ashish Sharma

Reputation: 576

I think you're looking for this,

Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_APP_MESSAGING);
startActivity(intent);

Upvotes: 2

Related Questions