forked from organicmaps/organicmaps-tmp
Fix ActivityNotFoundException when devices don't have browser
Signed-off-by: Jean-BaptisteC <jeanbaptiste.charron@outlook.fr>
This commit is contained in:
parent
d40730b038
commit
cc178bdc1f
3 changed files with 47 additions and 4 deletions
|
@ -4,7 +4,6 @@ import android.annotation.SuppressLint;
|
|||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.content.res.Configuration;
|
||||
import android.net.Uri;
|
||||
import android.os.Bundle;
|
||||
import android.speech.tts.TextToSpeech;
|
||||
import android.text.Spannable;
|
||||
|
@ -389,9 +388,7 @@ public class SettingsPrefsFragment extends BaseXmlSettingsFragment
|
|||
|
||||
final String ttsInfoUrl = requireActivity().getString(R.string.tts_info_link);
|
||||
ttsLangInfoLink.setOnPreferenceClickListener(preference -> {
|
||||
final Intent intent = new Intent(Intent.ACTION_VIEW);
|
||||
intent.setData(Uri.parse(ttsInfoUrl));
|
||||
requireContext().startActivity(intent);
|
||||
Utils.openUrl(requireContext(), ttsInfoUrl);
|
||||
return false;
|
||||
});
|
||||
}
|
||||
|
|
|
@ -253,6 +253,7 @@ public class Utils
|
|||
}
|
||||
catch (ActivityNotFoundException e)
|
||||
{
|
||||
Toast.makeText(context, context.getString(R.string.browser_not_available), Toast.LENGTH_LONG).show();
|
||||
Logger.e(TAG, "ActivityNotFoundException", e);
|
||||
}
|
||||
catch (AndroidRuntimeException e)
|
||||
|
|
|
@ -27392,3 +27392,48 @@
|
|||
vi = Đi bộ đường dài
|
||||
zh-Hans = 徒步旅行
|
||||
zh-Hant = 遠足
|
||||
|
||||
[browser_not_available]
|
||||
comment = Text displayed when a webview or a browser are disabled, and external links can't be opened.
|
||||
tags = android
|
||||
en = Web browser is not available
|
||||
af = Webblaaier is nie beskikbaar nie
|
||||
ar = متصفح الويب غير متوفر
|
||||
be = Вэб-браўзер недаступны
|
||||
bg = Уеб браузърът не е наличен
|
||||
ca = El navegador web no està disponible
|
||||
cs = Webový prohlížeč není k dispozici
|
||||
da = Webbrowser er ikke tilgængelig
|
||||
de = Webbrowser ist nicht verfügbar
|
||||
el = Το πρόγραμμα περιήγησης στο Web δεν είναι διαθέσιμο
|
||||
es = El navegador web no está disponible
|
||||
et = Veebibrauser ei ole saadaval
|
||||
eu = Web arakatzailea ez dago erabilgarri
|
||||
fa = مرورگر وب در دسترس نیست
|
||||
fi = Verkkoselain ei ole käytettävissä
|
||||
fr = Le navigateur Web n'est pas disponible
|
||||
he = דפדפן אינטרנט אינו זמין
|
||||
hi = वेब ब्राउज़र उपलब्ध नहीं है
|
||||
hu = A webböngésző nem elérhető
|
||||
id = Browser web tidak tersedia
|
||||
it = Il browser web non è disponibile
|
||||
ja = ウェブブラウザが利用できない
|
||||
ko = 웹 브라우저를 사용할 수 없습니다.
|
||||
lt = Interneto naršyklė nepasiekiama
|
||||
mr = वेब ब्राउझर उपलब्ध नाही
|
||||
nb = Nettleser er ikke tilgjengelig
|
||||
nl = Webbrowser is niet beschikbaar
|
||||
pl = Przeglądarka internetowa jest niedostępna
|
||||
pt = O navegador de Internet não está disponível
|
||||
pt-BR = O navegador da Web não está disponível
|
||||
ro = Browserul web nu este disponibil
|
||||
ru = Веб-браузер недоступен
|
||||
sk = Webový prehliadač nie je k dispozícii
|
||||
sv = Webbläsaren är inte tillgänglig
|
||||
sw = Kivinjari cha wavuti hakipatikani
|
||||
th = เว็บเบราว์เซอร์ไม่พร้อมใช้งาน
|
||||
tr = Web tarayıcısı mevcut değil
|
||||
uk = Веб-браузер недоступний
|
||||
vi = Trình duyệt web không khả dụng
|
||||
zh-Hans = 网络浏览器不可用
|
||||
zh-Hant = 網路瀏覽器不可用
|
||||
|
|
Loading…
Add table
Reference in a new issue