(技术)WebView 编辑器 如何主动获取焦点 弹出键盘
作者:
点映文艺 | 来源:发表于
2020-03-12 18:33 被阅读0次
直接上代码:
<include
android:focusable="true"
android:focusableInTouchMode="true"
layout="@layout/editor" />
看出门道没? 在WebView的根布局添加获取焦点的代码
如何主动弹出键盘? android:windowSoftInputMode="stateVisible|adjustResize"
editor 代码 >>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@color/white"
android:orientation="vertical">
<com.tencent.smtt.sdk.WebView
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/title"
android:layout_weight="1" />
</LinearLayout>
想不想联系到我?想?不想?到底想不想?想,想我就把我的QQ群:578060039 告诉你
打完收工
本文标题:(技术)WebView 编辑器 如何主动获取焦点 弹出键盘
本文链接:https://www.haomeiwen.com/subject/liebjhtx.html
网友评论