mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-05 00:23:09 +02:00
Removed reading name from profile
This commit is contained in:
@@ -33,14 +33,12 @@ import android.accounts.AuthenticatorException;
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.content.pm.PackageManager;
|
||||
import android.database.Cursor;
|
||||
import android.graphics.Paint;
|
||||
import android.net.ConnectivityManager;
|
||||
import android.net.NetworkInfo;
|
||||
import android.net.Uri;
|
||||
import android.os.Bundle;
|
||||
import android.os.Handler;
|
||||
import android.provider.ContactsContract;
|
||||
import android.text.TextUtils;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
@@ -288,20 +286,6 @@ public class FragmentGmail extends FragmentBase {
|
||||
btnGrant.setEnabled(!granted);
|
||||
tvGranted.setVisibility(granted ? View.VISIBLE : View.GONE);
|
||||
|
||||
boolean hasName = (etName.getText() != null && etName.getText().length() > 0);
|
||||
if (granted && !hasName) {
|
||||
try (Cursor cursor = getContext().getContentResolver().query(
|
||||
ContactsContract.Profile.CONTENT_URI,
|
||||
new String[]{ContactsContract.Profile.DISPLAY_NAME}, null, null, null)) {
|
||||
if (cursor != null && cursor.moveToFirst()) {
|
||||
int colDisplay = cursor.getColumnIndex(ContactsContract.Profile.DISPLAY_NAME);
|
||||
etName.setText(cursor.getString(colDisplay));
|
||||
}
|
||||
} catch (Throwable ex) {
|
||||
Log.e(ex);
|
||||
}
|
||||
}
|
||||
|
||||
etName.setEnabled(granted);
|
||||
cbPop.setEnabled(granted);
|
||||
cbRecent.setEnabled(granted);
|
||||
|
||||
Reference in New Issue
Block a user