Ste*_*ano 5 keyboard android field webview show-hide
在 Android 网页视图中,当触摸文本/密码字段时,键盘会出现但会覆盖该字段,迫使用户滚动以查看他们正在键入的内容。
有没有办法解决这个问题,或者有办法在网络视图中自动对焦?(如在 iOS 中所见)。
显现
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dedalos.amb">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:name=".MyApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:usesCleartextTraffic="true"
android:windowSoftInputMode="adjustPan"
android:theme="@style/AppTheme">
<activity android:name=".SplashScreen" android:theme="@style/SplashTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".MainActivity">
</activity>
</application>
</manifest>
Run Code Online (Sandbox Code Playgroud)
布局
<?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="fill_parent"
android:orientation="vertical"
android:background="@color/splash_background"
tools:context=".MainActivity">
<WebView
android:id="@+id/ambWebViewLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/splash_background" />
</LinearLayout>
Run Code Online (Sandbox Code Playgroud)
我还在这里粘贴样式和颜色:
颜色文件
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#008577</color>
<color name="colorPrimaryDark">#00574B</color>
<color name="colorAccent">#D81B60</color>
<color name="splash_background">#e11020</color>
</resources>
Run Code Online (Sandbox Code Playgroud)
样式文件
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">#e11020</item>
<item name="colorPrimaryDark">#e11020</item>
<item name="colorAccent">#e11020</item>
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="windowNoTitle">true</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:windowTranslucentNavigation">true</item>
</style>
<!-- SplashTheme -->
<style name="SplashTheme" parent="AppTheme">
<item name="android:windowBackground">@drawable/splash_theme</item>
</style>
</resources>
Run Code Online (Sandbox Code Playgroud)
小智 6
尝试添加以下属性:
android:fitsSystemWindows="true"
Run Code Online (Sandbox Code Playgroud)
在 .xml 布局的根 LinearLayout 中。
您可能想查看这篇文章: https ://developer.android.com/training/keyboard-input/visibility
也许这会对你有所帮助。
android:windowSoftInputMode="adjustResize"
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
7400 次 |
| 最近记录: |