我正在编写一项跟踪系统更改的服务,这意味着,我愿意在任何应用程序的键盘变得可见/隐藏时跟踪。
为了完成以下任务,我构建了一个启动服务的小型活动
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Intent serviceIntent = new Intent(this, MyService.class);
startService(serviceIntent);
//setContentView(R.layout.activity_main);
}
}
manifest.xml本身
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="somepackage">
<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">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service
android:name=".MyService"
android:enabled="true"
android:exported="true"
android:configChanges="orientation|screenSize|keyboardHidden"></service>
</application>
</manifest>
和服务本身:
public class MyService extends Service {
public MyService() {
}
private static final String TAG =
"abbeyservice";
@Override
public void onCreate() {
Log.d(TAG, "Service onCreate");
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Log.i(TAG, "Service onStartCommand");
return Service.START_STICKY;
}
@Override
public IBinder onBind(Intent arg0) {
Log.i(TAG, "Service onBind");
return null;
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
}
@Override
public void onDestroy() {
Log.i(TAG, "Service onDestroy");
}
}
问题是我收到了内部更改的通知,仅针对我的活动。由于未知原因,这被视为白屏(即使我没有使用SetContentView(..))
答案 0 :(得分:1)
当你谈到&#34;键盘&#34;你在谈论软键盘。这不会导致配置更改,因为配置没有更改。
有些设备的硬件键盘滑出,因此当它们滑出或重新进入时会生成配置更改事件。还可以将外部键盘连接到某些Android设备,连接或断开硬件键盘的操作也会生成配置更改事件。
要检测键盘是否显示在您自己的应用中,请参阅 How to check visibility of software keyboard in Android?
据我所知,无法确定软键盘是否显示在另一个应用程序中。