Also show toast in openDownloadDialog()

and lengthened a bit to inform user to wait...
This commit is contained in:
devlearner 2022-10-16 02:47:53 +08:00 committed by Stypox
parent b175774ad8
commit c1f37d8591
No known key found for this signature in database
GPG Key ID: 4BDF1B40A49FDD23
1 changed files with 13 additions and 7 deletions

View File

@ -669,13 +669,7 @@ public class RouterActivity extends AppCompatActivity {
}
private void openAddToPlaylistDialog() {
// Getting the stream info usually takes a moment
// Notifying the user here to ensure that no confusion arises
Toast.makeText(
getApplicationContext(),
getString(R.string.processing_may_take_a_moment),
Toast.LENGTH_SHORT)
.show();
pleaseWait();
disposables.add(ExtractorHelper.getStreamInfo(currentServiceId, currentUrl, false)
.subscribeOn(Schedulers.io())
@ -705,6 +699,8 @@ public class RouterActivity extends AppCompatActivity {
@SuppressLint("CheckResult")
private void openDownloadDialog() {
pleaseWait();
disposables.add(ExtractorHelper.getStreamInfo(currentServiceId, currentUrl, true)
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
@ -719,6 +715,16 @@ public class RouterActivity extends AppCompatActivity {
}, throwable -> showUnsupportedUrlDialog(currentUrl)));
}
private void pleaseWait() {
// Getting the stream info usually takes a moment
// Notifying the user here to ensure that no confusion arises
Toast.makeText(
getApplicationContext(),
getString(R.string.processing_may_take_a_moment),
Toast.LENGTH_LONG)
.show();
}
@Override
public void onRequestPermissionsResult(final int requestCode,
@NonNull final String[] permissions,