HomeSort by relevance Sort by last modified time
    Searched refs:mTargetContactId (Results 1 - 3 of 3) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/list/
JoinContactListFragment.java 47 private long mTargetContactId;
57 ContentUris.withAppendedId(Contacts.CONTENT_URI, mTargetContactId),
132 mTargetContactId = targetContactId;
144 adapter.setTargetContactId(mTargetContactId);
167 outState.putLong(KEY_TARGET_CONTACT_ID, mTargetContactId);
174 mTargetContactId = savedState.getLong(KEY_TARGET_CONTACT_ID);
JoinContactListAdapter.java 43 private long mTargetContactId;
63 this.mTargetContactId = targetContactId;
71 builder.appendEncodedPath(String.valueOf(mTargetContactId));
100 loader.setSelectionArgs(new String[]{ String.valueOf(mTargetContactId) });
  /packages/apps/Contacts/src/com/android/contacts/activities/
JoinContactActivity.java 70 private long mTargetContactId;
88 mTargetContactId = intent.getLongExtra(EXTRA_TARGET_CONTACT_ID, -1);
89 if (mTargetContactId == -1) {
112 mListFragment.setTargetContactId(mTargetContactId);
218 outState.putLong(KEY_TARGET_CONTACT_ID, mTargetContactId);
224 mTargetContactId = savedInstanceState.getLong(KEY_TARGET_CONTACT_ID);

Completed in 2403 milliseconds