我有一个WebView
,其父级为RelativeLayout
。
在WebView
中,当我点击某个特定按钮时,它会加载另一个网址。我想在该网址上禁用键盘。那个url我进入了shouldoverrideurlloading(WebView视图,Url Url)方法。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background"
android:gravity="center_horizontal"
android:orientation="vertical"
tools:context="com.xenopsi.benchmark.BrowserActivity">
<WebView
android:id="@+id/browserView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:scrollbars="none"/>
</RelativeLayout>
我做了那个方法:
relativeLayout.setDescendantFocusability(ViewGroup.FOCUS_BLOCK_DESCENDANTS);
webView.setFocusable(false);
webView.setFocusableInTouchMode(true);
但是当我点击该页面的文本字段时,键盘仍会显示。
如果我在onCreate()
活动方法上做了相同的代码,那么它的工作正常,
但我的问题是想在我的页面加载时在shouldOverrideUrlLoading
方法上禁用它。
答案 0 :(得分:0)
如你所说,你想隐藏特定链接的键盘,做这样的事情,
public boolean shouldOverrideUrlLoading(WebView view, String url) {
Log.e("Loading URL", url);
view.loadUrl(url);
if(url.equals(yourUrl)){
// hide keyboard
} else {
// unhide keyboard
}
return true;
}
我希望这会有所帮助..
快乐编码..