Search in sources :

Example 41 with DialogFragment

use of androidx.fragment.app.DialogFragment in project zype-android by zype.

the class VideosActivity method updateListItem.

// Download progress
protected static void updateListItem(Activity activity, View view, Intent intent, int action, String fileId, VideosCursorAdapter.VideosViewHolder viewHolder) {
    if (TextUtils.equals(fileId, viewHolder.videoId)) {
        String errorMessage;
        int progress;
        switch(action) {
            case DownloadConstants.PROGRESS_CANCELED_AUDIO:
                viewHolder.isAudioDownloaded = false;
                UiUtils.showWarningSnackbar(view, "Audio download has canceled");
                hideProgress(viewHolder);
                break;
            case DownloadConstants.PROGRESS_CANCELED_VIDEO:
                viewHolder.isVideoDownloaded = false;
                UiUtils.showWarningSnackbar(view, "VideoList Download has canceled");
                hideProgress(viewHolder);
                break;
            case DownloadConstants.PROGRESS_END_AUDIO:
                viewHolder.isAudioDownloaded = true;
                UiUtils.showPositiveSnackbar(view, "Audio was downloaded");
                hideProgress(viewHolder);
                break;
            case DownloadConstants.PROGRESS_END_VIDEO:
                viewHolder.isVideoDownloaded = true;
                UiUtils.showPositiveSnackbar(view, "VideoList was downloaded");
                hideProgress(viewHolder);
                break;
            case DownloadConstants.PROGRESS_FAIL_AUDIO:
                viewHolder.isAudioDownloaded = false;
                errorMessage = intent.getStringExtra(BundleConstants.PROGRESS_ERROR_MESSAGE);
                UiUtils.showErrorSnackbar(view, errorMessage);
                hideProgress(viewHolder);
                break;
            case DownloadConstants.PROGRESS_FAIL_VIDEO:
                viewHolder.isVideoDownloaded = false;
                errorMessage = intent.getStringExtra(BundleConstants.PROGRESS_ERROR_MESSAGE);
                UiUtils.showErrorSnackbar(view, errorMessage);
                hideProgress(viewHolder);
                break;
            case DownloadConstants.PROGRESS_START_AUDIO:
                viewHolder.isAudioDownloaded = false;
                UiUtils.showPositiveSnackbar(view, "Audio downloading has started");
                updateListView(viewHolder, 0);
                break;
            case DownloadConstants.PROGRESS_START_VIDEO:
                viewHolder.isVideoDownloaded = false;
                UiUtils.showPositiveSnackbar(view, "VideoList downloading was started");
                updateListView(viewHolder, 0);
                break;
            case DownloadConstants.PROGRESS_UPDATE_AUDIO:
                viewHolder.isAudioDownloaded = false;
                progress = intent.getIntExtra(BundleConstants.PROGRESS, 0);
                updateListView(viewHolder, progress);
                break;
            case DownloadConstants.PROGRESS_UPDATE_VIDEO:
                viewHolder.isVideoDownloaded = false;
                progress = intent.getIntExtra(BundleConstants.PROGRESS, 0);
                updateListView(viewHolder, progress);
                break;
            case DownloadConstants.PROGRESS_FREE_SPACE:
                viewHolder.isVideoDownloaded = false;
                viewHolder.isAudioDownloaded = false;
                hideProgress(viewHolder);
                if (activity instanceof BaseActivity) {
                    int error = intent.getIntExtra(BundleConstants.PROGRESS_ERROR_MESSAGE, -1);
                    if (error == -1) {
                        error = R.string.alert_dialog_message_free_space;
                    }
                    DialogFragment newFragment = CustomAlertDialog.newInstance(R.string.alert_dialog_title_free_space, error);
                    newFragment.show(((BaseActivity) activity).getSupportFragmentManager(), "dialog_free_space");
                } else {
                    UiUtils.showWarningSnackbar(view, activity.getString(R.string.alert_dialog_message_free_space));
                }
                break;
            default:
                throw new IllegalStateException("unknown action=" + action);
        }
    }
}
Also used : BaseActivity(com.zype.android.ui.base.BaseActivity) DialogFragment(androidx.fragment.app.DialogFragment)

Example 42 with DialogFragment

use of androidx.fragment.app.DialogFragment in project ETSMobile-Android2 by ApplETS.

the class BandwidthFragment method displayPhase3Dialog.

private void displayPhase3Dialog() {
    FragmentTransaction fT = getFragmentManager().beginTransaction();
    DialogFragment fragment = (DialogFragment) getFragmentManager().findFragmentByTag(PHASE_3_DIALOG_TAG);
    if (fragment == null)
        fragment = BandwidthPhase3DialogFragment.newInstance();
    if (!fragment.isAdded())
        fragment.show(fT, PHASE_3_DIALOG_TAG);
}
Also used : FragmentTransaction(androidx.fragment.app.FragmentTransaction) DialogFragment(androidx.fragment.app.DialogFragment)

Example 43 with DialogFragment

use of androidx.fragment.app.DialogFragment in project collect by opendatakit.

the class DateTimeWidgetUtilsTest method assertDialogIsShowing.

private void assertDialogIsShowing(DatePickerDetails.DatePickerType datePickerType, Class dialogClass) {
    when(datePickerDetails.getDatePickerType()).thenReturn(datePickerType);
    dateTimeWidgetUtils.showDatePickerDialog(activity, datePickerDetails, date);
    DialogFragment dialog = (DialogFragment) activity.getSupportFragmentManager().findFragmentByTag(dialogClass.getName());
    assertNotNull(dialog);
    assertEquals(dialog.getClass(), dialogClass);
}
Also used : DialogFragment(androidx.fragment.app.DialogFragment)

Example 44 with DialogFragment

use of androidx.fragment.app.DialogFragment in project collect by opendatakit.

the class DateTimeWidgetUtilsTest method displayDatePickerDialogWithYearMode_showsDatePickerWithDayAndMonthFixedToJanuaryFirst.

@Test
public void displayDatePickerDialogWithYearMode_showsDatePickerWithDayAndMonthFixedToJanuaryFirst() {
    when(datePickerDetails.getDatePickerType()).thenReturn(GREGORIAN);
    dateTimeWidgetUtils.showDatePickerDialog(activity, gregorianYear, date);
    DialogFragment dialog = (DialogFragment) activity.getSupportFragmentManager().findFragmentByTag(FixedDatePickerDialog.class.getName());
    assertThat(((DatePickerDialog) dialog.getDialog()).getDatePicker().getYear(), is(date.getYear()));
    assertThat(((DatePickerDialog) dialog.getDialog()).getDatePicker().getMonth(), is(0));
    assertThat(((DatePickerDialog) dialog.getDialog()).getDatePicker().getDayOfMonth(), is(1));
}
Also used : PersianDatePickerDialog(org.odk.collect.android.fragments.dialogs.PersianDatePickerDialog) DatePickerDialog(android.app.DatePickerDialog) IslamicDatePickerDialog(org.odk.collect.android.fragments.dialogs.IslamicDatePickerDialog) FixedDatePickerDialog(org.odk.collect.android.fragments.dialogs.FixedDatePickerDialog) EthiopianDatePickerDialog(org.odk.collect.android.fragments.dialogs.EthiopianDatePickerDialog) CopticDatePickerDialog(org.odk.collect.android.fragments.dialogs.CopticDatePickerDialog) BikramSambatDatePickerDialog(org.odk.collect.android.fragments.dialogs.BikramSambatDatePickerDialog) MyanmarDatePickerDialog(org.odk.collect.android.fragments.dialogs.MyanmarDatePickerDialog) DialogFragment(androidx.fragment.app.DialogFragment) Test(org.junit.Test)

Example 45 with DialogFragment

use of androidx.fragment.app.DialogFragment in project android by nextcloud.

the class ConflictsResolveActivityIT method keepNew.

@Test
@ScreenshotTest
public void keepNew() {
    returnCode = false;
    OCUpload newUpload = new OCUpload(FileStorageUtils.getSavePath(user.getAccountName()) + "/nonEmpty.txt", "/newFile.txt", user.getAccountName());
    OCFile existingFile = new OCFile("/newFile.txt");
    existingFile.setFileLength(1024000);
    existingFile.setModificationTimestamp(1582019340);
    existingFile.setRemoteId("123abc");
    OCFile newFile = new OCFile("/newFile.txt");
    newFile.setFileLength(56000);
    newFile.setModificationTimestamp(1522019340);
    newFile.setStoragePath(FileStorageUtils.getSavePath(user.getAccountName()) + "/nonEmpty.txt");
    FileDataStorageManager storageManager = new FileDataStorageManager(user, targetContext.getContentResolver());
    storageManager.saveNewFile(existingFile);
    Intent intent = new Intent(targetContext, ConflictsResolveActivity.class);
    intent.putExtra(ConflictsResolveActivity.EXTRA_FILE, newFile);
    intent.putExtra(ConflictsResolveActivity.EXTRA_EXISTING_FILE, existingFile);
    intent.putExtra(ConflictsResolveActivity.EXTRA_CONFLICT_UPLOAD_ID, newUpload.getUploadId());
    ConflictsResolveActivity sut = activityRule.launchActivity(intent);
    sut.listener = decision -> {
        assertEquals(decision, ConflictsResolveDialog.Decision.KEEP_LOCAL);
        returnCode = true;
    };
    getInstrumentation().waitForIdleSync();
    onView(withId(R.id.new_checkbox)).perform(click());
    DialogFragment dialog = (DialogFragment) sut.getSupportFragmentManager().findFragmentByTag("conflictDialog");
    screenshot(Objects.requireNonNull(dialog.requireDialog().getWindow()).getDecorView());
    onView(withText("OK")).perform(click());
    assertTrue(returnCode);
}
Also used : OCFile(com.owncloud.android.datamodel.OCFile) OCUpload(com.owncloud.android.db.OCUpload) FileDataStorageManager(com.owncloud.android.datamodel.FileDataStorageManager) DialogFragment(androidx.fragment.app.DialogFragment) Intent(android.content.Intent) Test(org.junit.Test) ScreenshotTest(com.owncloud.android.utils.ScreenshotTest) ScreenshotTest(com.owncloud.android.utils.ScreenshotTest)

Aggregations

DialogFragment (androidx.fragment.app.DialogFragment)55 Bundle (android.os.Bundle)22 BottomSheetDialogFragment (com.google.android.material.bottomsheet.BottomSheetDialogFragment)8 Intent (android.content.Intent)7 Fragment (androidx.fragment.app.Fragment)4 InstrumentedDialogFragment (com.android.settings.core.instrumentation.InstrumentedDialogFragment)4 Test (org.junit.Test)4 FullScreenDialogFragment (org.thoughtcrime.securesms.components.FullScreenDialogFragment)4 NonNull (androidx.annotation.NonNull)3 FragmentTransaction (androidx.fragment.app.FragmentTransaction)3 ConfirmationDialogFragment (com.fsck.k9.fragment.ConfirmationDialogFragment)3 FileDataStorageManager (com.owncloud.android.datamodel.FileDataStorageManager)3 OCFile (com.owncloud.android.datamodel.OCFile)3 OCUpload (com.owncloud.android.db.OCUpload)3 ScreenshotTest (com.owncloud.android.utils.ScreenshotTest)3 FragmentManager (androidx.fragment.app.FragmentManager)2 AttachmentDownloadDialogFragment (com.fsck.k9.fragment.AttachmentDownloadDialogFragment)2 ArrayList (java.util.ArrayList)2 CustomDefaultPreference (org.thoughtcrime.securesms.components.CustomDefaultPreference)2 ColorPickerPreference (org.thoughtcrime.securesms.preferences.widgets.ColorPickerPreference)2