mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2024-12-28 11:58:23 +01:00
Fail gracefully when there is no webview installed.
This commit is contained in:
parent
9a47a3d9d2
commit
3cd7cbd6d8
@ -6,6 +6,8 @@ import android.content.SharedPreferences;
|
||||
import android.graphics.Bitmap;
|
||||
import android.net.Uri;
|
||||
import android.os.Bundle;
|
||||
import android.util.Log;
|
||||
import android.view.InflateException;
|
||||
import android.view.MenuItem;
|
||||
import android.webkit.CookieManager;
|
||||
import android.webkit.WebView;
|
||||
@ -70,7 +72,14 @@ public class LoginActivity extends BaseActivity {
|
||||
((Infinity) getApplication()).getAppComponent().inject(this);
|
||||
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_login);
|
||||
try {
|
||||
setContentView(R.layout.activity_login);
|
||||
} catch (InflateException ie) {
|
||||
Log.e("LoginActivity", "Failed to inflate LoginActivity: " + ie.getMessage());
|
||||
Toast.makeText(LoginActivity.this, R.string.no_system_webview_error, Toast.LENGTH_SHORT).show();
|
||||
finish();
|
||||
return;
|
||||
}
|
||||
|
||||
ButterKnife.bind(this);
|
||||
|
||||
|
@ -67,6 +67,7 @@
|
||||
<string name="something_went_wrong">Something went wrong. Try again later.</string>
|
||||
<string name="access_denied">Access denied</string>
|
||||
<string name="parse_user_info_error">Error occurred when parsing the user info</string>
|
||||
<string name="no_system_webview_error">Error opening System\'s WebView</string>
|
||||
|
||||
<string name="error_loading_image_tap_to_retry">Error loading the image. Tap to retry.</string>
|
||||
<string name="error_loading_gif_tap_to_retry">Error loading the gif. Tap to retry.</string>
|
||||
|
Loading…
Reference in New Issue
Block a user