Seven
Seven

Reputation: 3

can i setup a onItemClickListener in android system 's sms inbox to start a custom activity?

in my acticity ,i open the android system's sms inbox with this code:


Intent mIntent = new Intent(); mIntent.setClassName("com.android.mms", "com.android.mms.ui.ConversationList"); startActivity(mIntent);

how can i set a onItemClickLietener to start my custom activity ?

Upvotes: 0

Views: 28

Answers (1)

CommonsWare
CommonsWare

Reputation: 1007296

i open the android system's sms inbox with this code

Note that many Android users do not use this app, and I would not be surprised if many Android devices do not have this activity.

how can i set a onItemClickLietener to start my custom activity ?

You can't. You are welcome to write your own SMS client app, though.

Upvotes: 1

Related Questions