/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
android/src/com/mapswithme/maps/widget/InputWebView.java
33 строки
709 B
Dmitry Yunitsky
[android] Working password and webview auth.
23 мар 2016, 16:14
23 мар 2016, 16:14
3a7faf7
Код
Авторство
О чём код?
package com.mapswithme.maps.widget; import android.content.Context; import android.util.AttributeSet; import android.webkit.WebView; /** * Workaround for not appearing soft keyboard in webview. * Check bugreport at https://code.google.com/p/android/issues/detail?id=7189 for more details. */ public class InputWebView extends WebView { public InputWebView(Context context) { super(context); } public InputWebView(Context context, AttributeSet attrs) { super(context, attrs); } public InputWebView(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); } @Override public boolean onCheckIsTextEditor() { return true; } }