我里面有一个滚动视图键盘没有出现与滚动视图在web视图Android的
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:orientation="vertical"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bg_header"
/>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="match_parent"
>
<WebView
android:id="@+id/webView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</ScrollView>
</LinearLayout>
网页视图,但它不会让我点击窗体字段或编辑框在web视图一样登录字段等我把键盘
我试过删除scrollView。也许是因为一旦记录的值是我做的webView“记住”这些字段,这就是为什么键盘没有显示?我怎样才能解决这个
我应该怎么做:(
你有没有在任何的Android设备上测试它,而不是模拟器。 –
我在s2上工作....可能ScrollViw不会让它变得焦点吗?它开始时,我添加了scrollView,我无法删除scrollView –
这里有什么使用RelativeLayout .lol ..可以不使用textview或其他东西 – Unknown