美文网首页
Android贴纸

Android贴纸

作者: 张俊峰0613 | 来源:发表于2019-08-23 17:30 被阅读0次

    获取焦点

    new Thread(new Runnable() {
            @Override
            public void run() {
                while (true) {
                    try {
                        Thread.sleep(5000);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                    View rootview = DetailActivity.this.getWindow().getDecorView();
                    View aaa = rootview.findFocus();
                    Log.i("tag", aaa.toString());
                }
     
            }
        }).start();
    
    

    相关文章

      网友评论

          本文标题:Android贴纸

          本文链接:https://www.haomeiwen.com/subject/mcwtectx.html