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 48 private long mTargetContactId;
58 ContentUris.withAppendedId(Contacts.CONTENT_URI, mTargetContactId),
133 mTargetContactId = targetContactId;
145 adapter.setTargetContactId(mTargetContactId);
168 outState.putLong(KEY_TARGET_CONTACT_ID, mTargetContactId);
175 mTargetContactId = savedState.getLong(KEY_TARGET_CONTACT_ID);
JoinContactListAdapter.java 46 private long mTargetContactId;
66 this.mTargetContactId = targetContactId;
74 builder.appendEncodedPath(String.valueOf(mTargetContactId));
103 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 2484 milliseconds