如何在Android上检查虚拟键盘的可见性?
在某些情况下,我们需要确定特定活动中键盘是否可见。在这个例子中,我们可以检查Android上虚拟键盘的可见性。
步骤1 − 在Android Studio中创建一个新项目,转到文件 ⇒ 新建项目,并填写所有必需的详细信息以创建一个新项目。
步骤2 − 将以下代码添加到res/layout/activity_main.xml。
<?xml version = "1.0" encoding = "utf-8"?> <android.support.constraint.ConstraintLayout xmlns:android = "http://schemas.android.com/apk/res/android" xmlns:app = "http://schemas.android.com/apk/res-auto" xmlns:tools = "http://schemas.android.com/tools" android:layout_width = "match_parent" android:layout_height = "match_parent" android:id = "@+id/rootview" tools:context = ".MainActivity"> <EditText android:id = "@+id/editext" android:layout_width = "match_parent" android:layout_height = "wrap_content"> </EditText> <Button android:id = "@+id/button" android:layout_width = "wrap_content" android:layout_height = "wrap_content" android:text = "Click here to hide" app:layout_constraintBottom_toBottomOf = "parent" app:layout_constraintLeft_toLeftOf = "parent" app:layout_constraintRight_toRightOf = "parent" app:layout_constraintTop_toTopOf = "parent" /> </android.support.constraint.ConstraintLayout>
步骤3 − 将以下代码添加到 src/MainActivity.java
import android.graphics.Rect; import android.os.Build; import android.os.Bundle; import android.support.annotation.RequiresApi; import android.support.constraint.ConstraintLayout; import android.support.v7.app.AppCompatActivity; import android.util.Log; import android.view.View; import android.view.ViewTreeObserver; import android.view.inputmethod.InputMethodManager; import android.widget.Button; import android.widget.EditText; import android.widget.Toast; public class MainActivity extends AppCompatActivity implements View.OnClickListener { ConstraintLayout constraintLayout; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Button button = findViewById(R.id.button); EditText editText=findViewById(R.id.editext); editText.requestFocus(); constraintLayout=findViewById(R.id.rootview); constraintLayout.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() { @Override public void onGlobalLayout() { Rect r = new Rect(); constraintLayout.getWindowVisibleDisplayFrame(r); int screenHeight = constraintLayout.getRootView().getHeight(); int keypadHeight = screenHeight - r.bottom; if (keypadHeight > screenHeight * 0.15) { Toast.makeText(MainActivity.this,"Keyboard is showing",Toast.LENGTH_LONG).show(); } else { Toast.makeText(MainActivity.this,"keyboard closed",Toast.LENGTH_LONG).show(); } } }); button.setOnClickListener(this); } @RequiresApi(api = Build.VERSION_CODES.O) @Override public void onClick(View v) { switch (v.getId()) { case R.id.button: hideSoftkeybard(v); break; } } private void hideSoftkeybard(View v) { InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE); inputMethodManager.hideSoftInputFromWindow(v.getWindowToken(), 0); } }
在上面的代码中,我们使用了viewTreeObserver监听器来查找特定活动中视图组的更改。在该观察器中,我们使用以下代码查找根元素的高度:
int screenHeight = constraintLayout.getRootView().getHeight();
现在,我们需要找到键盘高度,如下所示:
Rect r = new Rect(); constraintLayout.getWindowVisibleDisplayFrame(r); int keypadHeight = screenHeight - r.bottom;
现在,我们需要将键盘高度与rootview高度进行比较,如下所示:
if (keypadHeight > screenHeight * 0.15) { Toast.makeText(MainActivity.this,"Keyboard is showing",Toast.LENGTH_LONG).show(); } else { Toast.makeText(MainActivity.this,"keyboard closed",Toast.LENGTH_LONG).show(); }
步骤4 − 将以下代码添加到AndroidManifest.xml文件,如下所示:
<?xml version = "1.0" encoding = "utf-8"?> <manifest xmlns:android = "http://schemas.android.com/apk/res/android" package = "com.example.andy.myapplication"> <application android:allowBackup = "true" android:icon = "@mipmap/ic_launcher" android:label = "@string/app_name" android:roundIcon = "@mipmap/ic_launcher_round" android:supportsRtl = "true" android:theme = "@style/AppTheme"> <activity android:name = ".MainActivity" android:windowSoftInputMode = "stateAlwaysVisible"> <intent-filter> <action android:name = "android.intent.action.MAIN" /> <category android:name = "android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
在上面的代码中,我们将windowsoftInputMode添加为stateAlwaysVisible。当edittext请求焦点时,这很有用,它将显示键盘。
让我们尝试运行您的应用程序。我假设您已将您的实际Android移动设备连接到您的计算机。要从Android Studio运行应用程序,请打开您的项目活动文件之一,然后单击运行 工具栏中的图标。选择您的移动设备作为选项,然后检查您的移动设备,它将显示您的默认屏幕。
在上面的输出中,当显示键盘时,它将显示键盘正在显示的消息。
单击按钮以隐藏键盘。它将显示键盘已关闭的消息,如上所示。
点击 这里 下载项目代码
广告