'old/sms_mms'에 해당되는 글 3건

  1. 2010.04.23 외부 app의 DB와 동기화를 위해서 감시하는 코드
  2. 2010.03.30 소프트키보드 설정
  3. 2010.03.09 Vcard

[/data/contact.java]

   // BEGIN: 2010-04-21 lee.hyuntae @btb
    private static final ContentObserver sContactsObserver = new ContentObserver(new Handler()) {
        @Override
        public void onChange(boolean selfUpdate) {
         Log.d("foxil","contactObserver call invalidateCache()");
            invalidateCache();

            if (Log.isLoggable(LogTag.APP, Log.VERBOSE)) {
                log("contact changed, invalidate cache");
            }
        }
    };
    // END: 2010-04-21 lee.hyuntae @btb

   public static void init(final Context context) {
        Cache.init(context);
        RecipientIdCache.init(context);

        // it maybe too aggressive to listen for *any* contact changes, and rebuild MMS contact
        // cache each time that occurs. Unless we can get targeted updates for the contacts we
        // care about(which probably won't happen for a long time), we probably should just
        // invalidate cache peoridically, or surgically.

        // BEGIN: 2010-04-21 lee.hyuntae @btb
        context.getContentResolver().registerContentObserver(
                Contacts.CONTENT_URI, true, sContactsObserver);
     }
     // END: 2010-04-21 lee.hyuntae @btb

; contentResolver에 db를 감시하는 contentObserver 메서드를 사용하면 리스너로 사용할 수 있다.


 

'old > sms_mms' 카테고리의 다른 글

소프트키보드 설정  (0) 2010.03.30
Vcard  (0) 2010.03.09
Posted by jazzlife
,

//보이기

InputMethodManager inputMethodManager =
        (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);

inputMethodManager.toggleSoftInput(InputMethodManager.SHOW_FORCED,0);

## 방법은 많은데 이상하게도 제대로 되는 건 이것 하나 뿐이다.


//감추기

InputMethodManager inputMethodManager =
       (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);

inputMethodManager.hideSoftInputFromWindow(mTextEditor.getWindowToken(), 0);


 

'old > sms_mms' 카테고리의 다른 글

외부 app의 DB와 동기화를 위해서 감시하는 코드  (0) 2010.04.23
Vcard  (0) 2010.03.09
Posted by jazzlife
,

Vcard

old/sms_mms 2010. 3. 9. 21:02

'old > sms_mms' 카테고리의 다른 글

외부 app의 DB와 동기화를 위해서 감시하는 코드  (0) 2010.04.23
소프트키보드 설정  (0) 2010.03.30
Posted by jazzlife
,