View rootview = this.getWindow().getDecorView();
int focusId = rootview.findFocus().getId();
Log.i(TAG,"id = 0x"+Integer.toHexString(focusId));
focusId就是当前焦点的控件ID,我们转换为16进制后,再与R.java文件中的id进行比较,就能知道我们当前焦点是哪个控件了
R.java文件中的ID如下
2022-07-10 15:27:24
View rootview = this.getWindow().getDecorView();
int focusId = rootview.findFocus().getId();
Log.i(TAG,"id = 0x"+Integer.toHexString(focusId));
focusId就是当前焦点的控件ID,我们转换为16进制后,再与R.java文件中的id进行比较,就能知道我们当前焦点是哪个控件了
R.java文件中的ID如下