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/activities/
JoinContactActivity.java 59 private long mTargetContactId;
76 mTargetContactId = intent.getLongExtra(EXTRA_TARGET_CONTACT_ID, -1);
77 if (mTargetContactId == -1) {
105 mListFragment.setTargetContactId(mTargetContactId);
143 outState.putLong(KEY_TARGET_CONTACT_ID, mTargetContactId);
149 mTargetContactId = savedInstanceState.getLong(KEY_TARGET_CONTACT_ID);
  /packages/apps/Contacts/src/com/android/contacts/list/
JoinContactListFragment.java 44 private long mTargetContactId;
54 ContentUris.withAppendedId(Contacts.CONTENT_URI, mTargetContactId),
125 mTargetContactId = targetContactId;
137 adapter.setTargetContactId(mTargetContactId);
160 outState.putLong(KEY_TARGET_CONTACT_ID, mTargetContactId);
167 mTargetContactId = savedState.getLong(KEY_TARGET_CONTACT_ID);
JoinContactListAdapter.java 44 private long mTargetContactId;
65 this.mTargetContactId = targetContactId;
73 builder.appendEncodedPath(String.valueOf(mTargetContactId));
93 loader.setSelectionArgs(new String[]{String.valueOf(mTargetContactId)});

Completed in 74 milliseconds