我可以在 android 系统的短信收件箱中设置一个 onItemClickListener 来启动自定义 activity 吗?
can i setup a onItemClickListener in android system 's sms inbox to start a custom activity?
在我的活动中,我使用以下代码打开 android 系统的短信收件箱:
Intent mIntent = new Intent();
mIntent.setClassName("com.android.mms", "com.android.mms.ui.ConversationList");
startActivity(mIntent);
我如何设置 onItemClickListener 来启动我的自定义 activity?
i open the android system's sms inbox with this code
请注意,许多 Android 用户不使用此应用,如果许多 Android 设备没有此 activity,我也不会感到惊讶。
how can i set a onItemClickLietener to start my custom activity ?
你不能。不过,欢迎您编写自己的 SMS 客户端应用程序。
在我的活动中,我使用以下代码打开 android 系统的短信收件箱:
Intent mIntent = new Intent();
mIntent.setClassName("com.android.mms", "com.android.mms.ui.ConversationList");
startActivity(mIntent);
我如何设置 onItemClickListener 来启动我的自定义 activity?
i open the android system's sms inbox with this code
请注意,许多 Android 用户不使用此应用,如果许多 Android 设备没有此 activity,我也不会感到惊讶。
how can i set a onItemClickLietener to start my custom activity ?
你不能。不过,欢迎您编写自己的 SMS 客户端应用程序。