Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c2aa8878 authored by Wenyi Wang's avatar Wenyi Wang Committed by android-build-merger
Browse files

Merge "Use proper strings for different "share" options" into...

Merge "Use proper strings for different "share" options" into ub-contactsdialer-b-dev am: 4e74c108b0
am: 7907c5b90c

* commit '7907c5b90cb28d9a5eed8e0b7d13c49c3a690659':
  Use proper strings for different "share" options
parents fccb003c 1ca586f8
Loading
Loading
Loading
Loading
+15 −9
Original line number Diff line number Diff line
@@ -168,10 +168,16 @@ public class ImportExportDialogFragment extends DialogFragment
                        R.string.export_to_vcf_file));
            }
        }
        if (res.getBoolean(R.bool.config_allow_share_visible_contacts)) {
            if (contactsAreAvailable) {
                adapter.add(new AdapterEntry(getString(R.string.share_visible_contacts),
                        R.string.share_visible_contacts));
        if (res.getBoolean(R.bool.config_allow_share_contacts) && contactsAreAvailable) {
            if (mExportMode == EXPORT_MODE_FAVORITES) {
                // share "visible" contacts (favorite and frequent contacts) from Favorites tab
                adapter.add(new AdapterEntry(getString(R.string.share_favorite_contacts),
                        R.string.share_contacts));
            } else {
                // share "all" contacts (in groups selected in "Customize") from All tab for now
                // TODO: change the string to share_visible_contacts if implemented
                adapter.add(new AdapterEntry(getString(R.string.share_contacts),
                        R.string.share_contacts));
            }
        }

@@ -196,9 +202,9 @@ public class ImportExportDialogFragment extends DialogFragment
                        getActivity().startActivity(exportIntent);
                        break;
                    }
                    case R.string.share_visible_contacts: {
                    case R.string.share_contacts: {
                        dismissDialog = true;
                        doShareVisibleContacts();
                        doShareContacts();
                        break;
                    }
                    default: {
@@ -220,7 +226,7 @@ public class ImportExportDialogFragment extends DialogFragment
                .create();
    }

    private void doShareVisibleContacts() {
    private void doShareContacts() {
        try {
            // TODO move the query into a loader and do this in a background thread
            final Cursor cursor;
@@ -261,8 +267,8 @@ public class ImportExportDialogFragment extends DialogFragment
                }
            }
        } catch (Exception e) {
            Log.e(TAG, "Sharing visible contacts failed", e);
            Toast.makeText(getContext(), R.string.share_visible_contacts_failure,
            Log.e(TAG, "Sharing contacts failed", e);
            Toast.makeText(getContext(), R.string.share_contacts_failure,
                    Toast.LENGTH_SHORT).show();
        }
    }