페이지

2011년 3월 31일 목요일

MMS 기본 구성 항목

Android 메시지 기본 구성 항목이라고 판단된다.

  • com.android.mms.ui.MessageListAdapter


  • static final int COLUMN_MSG_TYPE            = 0;
    static final int COLUMN_ID                            = 1;
    static final int COLUMN_THREAD_ID           = 2;
    static final int COLUMN_SMS_ADDRESS         = 3;
    static final int COLUMN_SMS_BODY            = 4;
    static final int COLUMN_SMS_DATE            = 5;
    static final int COLUMN_SMS_READ            = 6;
    static final int COLUMN_SMS_TYPE            = 7;
    static final int COLUMN_SMS_STATUS          = 8;
    static final int COLUMN_SMS_LOCKED          = 9;
    static final int COLUMN_MMS_SUBJECT         = 10;
    static final int COLUMN_MMS_SUBJECT_CHARSET = 11;
    static final int COLUMN_MMS_DATE            = 12;
    static final int COLUMN_MMS_READ            = 13;
    static final int COLUMN_MMS_MESSAGE_TYPE    = 14;
    static final int COLUMN_MMS_MESSAGE_BOX     = 15;
    static final int COLUMN_MMS_DELIVERY_REPORT = 16;
    static final int COLUMN_MMS_READ_REPORT     = 17;
    static final int COLUMN_MMS_ERROR_TYPE      = 18;
    static final int COLUMN_MMS_LOCKED          = 19;

    2011년 3월 30일 수요일

    컨텐트 프로바이더 - (Content Provider)

    Content Provider 기본 개념을 이해하기 좋은 자료 링크합니다.

    http://androidhuman.tistory.com/279

    Grepcode

    Library source 내용을 확인해볼 필요가 종종 생기는 데 그때 요긴하게 사용할 수 있을거 같다.
    (Java 라이브러리, Android, 기타 등등..)

    현재 Android 소스를 받을 수 없어서 우선 Grepcode 로 MMS 소스를 분석 중이다 ^^

    http://grepcode.com/