5

can anyone help me out to find MMS id, i using this code to get MMS text but i don't know the MMS id (mmsId) so i stopped !!

I'll be thankful for your help

Samila

Community
  • 1
  • 1
Samiah
  • 221
  • 1
  • 6
  • 17

1 Answers1

1
Uri mmsInboxUri = Uri.parse("content://mms");               
Cursor mmsInboxCursor = getContentResolver().query(mmsInboxUri ,new String[]     
    {"_id","msg_box","ct_t","date"}, "msg_box=1 or msg_box=2", null, null);
int count = mmsInboxCursor.getCount(); 
if(mmsInboxCursor != null){

    try{

         if (mmsInboxCursor.moveToFirst())
         {                  
            do{

                System.out.println("<====MONITORING MESSAGES====>");                                
                int id = mmsInboxCursor.getString(0); 
              }while(mmsInboxCursor.moveToNext());
        }
    }catch (Exception e) {

        System.out.println("MMSMonitor :: startMMSMonitoring Exception== "+ e.getMessage());
    }
}
Bo Persson
  • 90,663
  • 31
  • 146
  • 203
Pragnesh Soni
  • 197
  • 1
  • 12