gpt4 book ai didi

android - 我想在编辑文本字段可见性模式下获得软键盘 (IME) 状态?

转载 作者:行者123 更新时间:2023-11-29 20:20:25 27 4
gpt4 key购买 nike

我尝试获取软键盘状态(显示或隐藏)使用 onConfigurationChanged(此处:http://developer.android.com/guide/topics/resources/runtime-changes.html#HandlingTheChange)

但这对我不起作用。我不知道。(我也已经尝试过 hardKeyboardHidden 和 keyboard-config 的值)

请检查我的代码。

AndroidManifest.xml

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">

<activity
android:configChanges="keyboardHidden"
android:windowSoftInputMode="adjustResize"
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

主 Activity .java

@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
// Checks whether a hardware keyboard is available
if (newConfig.keyboardHidden== Configuration.HARDKEYBOARDHIDDEN_NO) {
Toast.makeText(this, "keyboard visible", Toast.LENGTH_SHORT).show();
} else if (newConfig.keyboardHidden== Configuration.HARDKEYBOARDHIDDEN_YES) {
Toast.makeText(this, "keyboard hidden", Toast.LENGTH_SHORT).show();
}
}

只是简单地在activity_main.xml中添加了EditText

<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"
tools:context=".MainActivity">

<EditText
android:layout_width="match_parent"
android:layout_height="match_parent" />

</RelativeLayout>

那么如何解决这个问题呢?

最佳答案

此方法使用onMeasure()。它检查 Activity 屏幕是否较小。

How to check visibility of software keyboard in Android?

关于android - 我想在编辑文本字段可见性模式下获得软键盘 (IME) 状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33278402/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com