Commit 4c7e3ffc by Kang Donghun

【android14検証 @Form】報告フォームの「時間」を設定しようとすると、アプリが落ちる

parent 4bfa5586
......@@ -3,6 +3,7 @@ package jp.agentec.abook.abv.ui.viewer.activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.ContextThemeWrapper;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnClickListener;
......@@ -100,8 +101,9 @@ public class HTMLWebViewActivity extends ParentWebViewActivity {
// ***** WebViewセット
FrameLayout frameLayout = findViewById(R.id.frameWebView);
ContextThemeWrapper wrapper = new ContextThemeWrapper(this, android.R.style.Theme_Holo_Light_Dialog_NoActionBar);
// WebView上のIMEキーボード入力をハンドリングするため、カスタムWebViewに変更
this.webView = new CheckFormWebview(this, new CheckFormWebview.KeyActionCallback() {
this.webView = new CheckFormWebview(wrapper, new CheckFormWebview.KeyActionCallback() {
@Override
public void keyActionCallback(int editorInfoAction) {
if (editorInfoAction == EditorInfo.IME_ACTION_GO || editorInfoAction == EditorInfo.IME_ACTION_NEXT) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment