我怎样才能在 Android 中打开短信收件箱

How can I just open SMS inbox in Android

我只想在单击按钮时在 Android 中打开 SMS 应用程序收件箱。许多答案都是关于阅读短信或编写新短信的,但我只想 access/open 短信收件箱。我该怎么做?

我想你正在找这个,

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