mirror of
https://github.com/SimpleMobileTools/Simple-Voice-Recorder.git
synced 2025-06-05 21:59:31 +02:00
catch and show errors thrown at playing a recording
This commit is contained in:
@@ -57,7 +57,7 @@ android {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'com.simplemobiletools:commons:5.27.6'
|
||||
implementation 'com.simplemobiletools:commons:5.28.14'
|
||||
implementation 'org.greenrobot:eventbus:3.2.0'
|
||||
implementation 'com.github.Armen101:AudioRecordView:1.0.2'
|
||||
}
|
||||
|
@@ -42,7 +42,7 @@ class PlayerFragment(context: Context, attributeSet: AttributeSet) : MyViewPager
|
||||
|
||||
override fun onResume() {
|
||||
setupColors()
|
||||
if (!prevSavePath.isEmpty() && context!!.config.saveRecordingsFolder != prevSavePath) {
|
||||
if (prevSavePath.isNotEmpty() && context!!.config.saveRecordingsFolder != prevSavePath) {
|
||||
setupAdapter()
|
||||
} else {
|
||||
getRecordingsAdapter()?.updateTextColor(context.config.textColor)
|
||||
@@ -269,10 +269,14 @@ class PlayerFragment(context: Context, attributeSet: AttributeSet) : MyViewPager
|
||||
player!!.apply {
|
||||
reset()
|
||||
|
||||
if (isQPlus()) {
|
||||
setDataSource(context, getAudioFileContentUri(recording.id.toLong()))
|
||||
} else {
|
||||
setDataSource(recording.path)
|
||||
try {
|
||||
if (isQPlus()) {
|
||||
setDataSource(context, getAudioFileContentUri(recording.id.toLong()))
|
||||
} else {
|
||||
setDataSource(recording.path)
|
||||
}
|
||||
} catch (e: Exception) {
|
||||
context?.showErrorToast(e)
|
||||
}
|
||||
|
||||
prepareAsync()
|
||||
|
Reference in New Issue
Block a user