use of com.android.contacts.common.preference.ContactsPreferences in project android_packages_apps_Dialer by MoKee.
the class CallDetailActivity method onCreate.
@Override
protected void onCreate(Bundle icicle) {
super.onCreate(icicle);
mContext = this;
mResources = getResources();
mContactInfoHelper = new ContactInfoHelper(this, GeoUtil.getCurrentCountryIso(this));
mContactsPreferences = new ContactsPreferences(mContext);
mCallTypeHelper = new CallTypeHelper(getResources());
mFilteredNumberAsyncQueryHandler = new FilteredNumberAsyncQueryHandler(getContentResolver());
mVoicemailUri = getIntent().getParcelableExtra(EXTRA_VOICEMAIL_URI);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
setContentView(R.layout.call_detail);
mInflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
mHistoryList = (ListView) findViewById(R.id.history);
mHistoryList.addHeaderView(mInflater.inflate(R.layout.call_detail_header, null));
mHistoryList.addFooterView(mInflater.inflate(R.layout.call_detail_footer, null), null, false);
mQuickContactBadge = (QuickContactBadge) findViewById(R.id.quick_contact_photo);
mQuickContactBadge.setOverlay(null);
if (CompatUtils.hasPrioritizedMimeType()) {
mQuickContactBadge.setPrioritizedMimeType(Phone.CONTENT_ITEM_TYPE);
}
mCallerName = (TextView) findViewById(R.id.caller_name);
mCallerNumber = (TextView) findViewById(R.id.caller_number);
mAccountLabel = (TextView) findViewById(R.id.phone_account_label);
mContactPhotoManager = ContactPhotoManager.getInstance(this);
mCallButton = findViewById(R.id.call_back_button);
mCallButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (TextUtils.isEmpty(mNumber)) {
return;
}
Intent dialIntent = new CallIntentBuilder(getDialableNumber()).setCallInitiationType(LogState.INITIATION_CALL_DETAILS).build();
if (DialerUtils.isConferenceURICallLog(mNumber, mPostDialDigits)) {
dialIntent.putExtra("org.codeaurora.extra.DIAL_CONFERENCE_URI", true);
}
mContext.startActivity(dialIntent);
}
});
mBlockNumberActionItem = (TextView) findViewById(R.id.call_detail_action_block);
updateBlockActionItemVisibility(View.VISIBLE);
mBlockNumberActionItem.setOnClickListener(this);
mEditBeforeCallActionItem = findViewById(R.id.call_detail_action_edit_before_call);
mEditBeforeCallActionItem.setOnClickListener(this);
mReportActionItem = findViewById(R.id.call_detail_action_report);
mReportActionItem.setOnClickListener(this);
mCopyNumberActionItem = findViewById(R.id.call_detail_action_copy);
mCopyNumberActionItem.setOnClickListener(this);
if (getIntent().getBooleanExtra(EXTRA_FROM_NOTIFICATION, false)) {
closeSystemDialogs();
}
}
use of com.android.contacts.common.preference.ContactsPreferences in project android_packages_apps_Dialer by MoKee.
the class ContactsPreferencesFactoryTest method testNewContactsPreferences_TestInstance.
public void testNewContactsPreferences_TestInstance() {
ContactsPreferences testInstance = Mockito.mock(ContactsPreferences.class);
ContactsPreferencesFactory.setTestInstance(testInstance);
// Assert that it returns the same object always
assertSame(testInstance, ContactsPreferencesFactory.newContactsPreferences(getContext()));
assertSame(testInstance, ContactsPreferencesFactory.newContactsPreferences(getContext()));
}
use of com.android.contacts.common.preference.ContactsPreferences in project android_packages_apps_Dialer by LineageOS.
the class ContactEntryListFragment method onCreate.
@Override
public void onCreate(Bundle savedState) {
super.onCreate(savedState);
restoreSavedState(savedState);
mAdapter = createListAdapter();
mContactsPrefs = new ContactsPreferences(mContext);
}
use of com.android.contacts.common.preference.ContactsPreferences in project android_packages_apps_Dialer by LineageOS.
the class ContactsFragment method onCreate.
@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
contactsPrefs = new ContactsPreferences(getContext());
contactsPrefs.registerChangeListener(this);
}
use of com.android.contacts.common.preference.ContactsPreferences in project packages_apps_Contacts by AOKP.
the class ContactDisplayUtils method getDisplayName.
/**
* Returns the display name of the contact, using the current display order setting.
* Returns res/string/missing_name if there is no display name.
*/
public static CharSequence getDisplayName(Context context, Contact contactData) {
ContactsPreferences prefs = new ContactsPreferences(context);
final CharSequence displayName = contactData.getDisplayName();
if (prefs.getDisplayOrder() == ContactsPreferences.DISPLAY_ORDER_PRIMARY) {
if (!TextUtils.isEmpty(displayName)) {
if (contactData.getDisplayNameSource() == DisplayNameSources.PHONE) {
return sBidiFormatter.unicodeWrap(displayName.toString(), TextDirectionHeuristics.LTR);
}
return displayName;
}
} else {
final CharSequence altDisplayName = contactData.getAltDisplayName();
if (!TextUtils.isEmpty(altDisplayName)) {
return altDisplayName;
}
}
return context.getResources().getString(R.string.missing_name);
}
Aggregations