如何检测android 8.1.0中的最近按钮

时间:2018-04-11 11:27:56

标签: keyboard android-softkeyboard keyboard-events android-8.0-oreo recent-screens

我想检测最近的按钮,但是在Android 8.1.0中它没有工作.Below代码正在开发另一个版本的android但是在8.1.0 Intent.ACTION_CLOSE_SYSTEM_DIALOGS广播没有调用。我是使用以下实现。

public class HomeWatcher {
static final String TAG = "hg";
private Context mContext;
private IntentFilter mFilter;
private OnHomePressedListener mListener;
private InnerRecevier mRecevier;

public HomeWatcher(Context context) {
    mContext = context;
    mFilter = new IntentFilter();
    mFilter.addAction(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
    mFilter.addAction("");
}

public void setOnHomePressedListener(OnHomePressedListener listener) {
    mListener = listener;
    mRecevier = new InnerRecevier();
}

public void startWatch() {
    if (mRecevier != null) {
        mContext.registerReceiver(mRecevier, mFilter);
    }
}

public void stopWatch() {
    if (mRecevier != null) {
        mContext.unregisterReceiver(mRecevier);
    }
}

class InnerRecevier extends BroadcastReceiver {
    final String SYSTEM_DIALOG_REASON_KEY = "reason";
    final String SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS = "globalactions";
    final String SYSTEM_DIALOG_REASON_RECENT_APPS = "recentapps";
    final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";

    @Override
    public void onReceive(Context context, Intent intent) {
        String action = intent.getAction();
        if (action.equals(Intent.ACTION_CLOSE_SYSTEM_DIALOGS)) {
            String reason = intent.getStringExtra(SYSTEM_DIALOG_REASON_KEY);
            if (reason != null) {
                Log.e(TAG, "action:" + action + ",reason:" + reason);
                if (mListener != null) {
                    if (reason.equals(SYSTEM_DIALOG_REASON_HOME_KEY)) {
                        mListener.onHomePressed();
                    } else if (reason.equals(SYSTEM_DIALOG_REASON_RECENT_APPS)) {
                        mListener.onHomeLongPressed();
                    }
                }
            }
        }
    }
}

}

在课堂上,我使用下面的代码打电话。

HomeWatcher mHomeWatcher = new HomeWatcher(this);
mHomeWatcher.startWatch();

请帮忙!

编辑---- 上面的代码在正常流程中正常工作,但是当屏幕固定设置(ON)时,它不起作用。即使我没有收到KeyUpKeyDown

等任何活动

2 个答案:

答案 0 :(得分:0)

请使用以下代码

 `@Override
  public boolean dispatchKeyEvent(KeyEvent event) {
      Log.i("key pressed", String.valueOf(event.getKeyCode()));
      return super.dispatchKeyEvent(event);
  }`

答案 1 :(得分:0)

com.android.systemui软件包将在您单击“最近使用的应用程序”按钮时成为前台应用程序,因此,如果前台运行的应用程序是“ com.android.systemui”,请找到前台运行的应用程序并启动页面。