Hi,

I'd like ask about something of this topic.

For to read the inbox sms I have in the source:

ComponentName toLaunch = new 
ComponentName("com.android.mms","com.android.mms.ui.ConversationList");
Contenido = new Intent(Settings.ACTION_MANAGE_APPLICATIONS_SETTINGS);
Contenido.addCategory(Intent.CATEGORY_LAUNCHER);
Contenido.setComponent(toLaunch);
Contenido.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(Contenido);

I didn't have any problem with my devices so far, but now I have this error:

"Unable to find activity class 
{com.android.mms/com.android.mms.ui.ConversationList}; have you declared 
this activity in your AndroidManifest.xml?

Thank you very much

El martes 11 de mayo de 2010 05:04:01 UTC+2, Mr.Bells escribió:
>
> Hi Siddiqui
>  
> U can read the sms from the DB using the following URI
>  
> To get the inbox sms: content://sms/inbox
> To get the send sms: content://sms/sent
>  
> Refer the following java files:
>  
> 1. Telephony.java : framework/base/core/java/android/provider
>  
> After query from the DB, How to process the read the data from the cursor
>  
> 1. MessagingNotification: packages/apps/Mms/src/com/android/mms/transaction
>  
> 2. SmsReceiverService: packages/apps/Mms/src/com/android/mms/transaction
>  
> Any other queries, reply me back
>  
> Regards,
> Manikandan.D
>
>
>  
> On Mon, May 10, 2010 at 3:43 PM, Mohammad Siddiqui <
> siddiqui.m...@gmail.com> wrote:
>
>> Hi  everyone
>>
>> Can we read the android SMS  messages programmatically in android.
>>
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Android Developers" group.
>> To post to this group, send email to android-developers@googlegroups.com
>> To unsubscribe from this group, send email to
>> android-developers+unsubscr...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/android-developers?hl=en
>
>
>  -- 
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en


El martes 11 de mayo de 2010 05:04:01 UTC+2, Mr.Bells escribió:
>
> Hi Siddiqui
>  
> U can read the sms from the DB using the following URI
>  
> To get the inbox sms: content://sms/inbox
> To get the send sms: content://sms/sent
>  
> Refer the following java files:
>  
> 1. Telephony.java : framework/base/core/java/android/provider
>  
> After query from the DB, How to process the read the data from the cursor
>  
> 1. MessagingNotification: packages/apps/Mms/src/com/android/mms/transaction
>  
> 2. SmsReceiverService: packages/apps/Mms/src/com/android/mms/transaction
>  
> Any other queries, reply me back
>  
> Regards,
> Manikandan.D
>
>
>  
> On Mon, May 10, 2010 at 3:43 PM, Mohammad Siddiqui <
> siddiqui.m...@gmail.com> wrote:
>
>> Hi  everyone
>>
>> Can we read the android SMS  messages programmatically in android.
>>
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Android Developers" group.
>> To post to this group, send email to android-developers@googlegroups.com
>> To unsubscribe from this group, send email to
>> android-developers+unsubscr...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/android-developers?hl=en
>
>
>  -- 
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to