Android下如何取当前获得焦点的控件的ID

2024年11月17日 06:39
有2个网友回答
网友(1):

Android如何获取动态添加控件的id:  RelativeLayout mainLayout = (RelativeLayout)findViewById(R.id.relaGameZhaiGuoZi);  imgApple2 = new ImageView(this);  imgApple2.setImageResource(R.drawable.app);  imgApple2.setId(110);  imgApple2.setOnClickListener(this);  RelativeLayout.LayoutParams lp1 = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);  lp1.leftMargin=30;  lp1.topMargin = 100;  mainLayout.addView(imgApple2,lp1);  View类里面有一个findFocus的成员函数,作用相当于找到以当前View为根的view层次结构中,获得当前输入焦点的view 。Android下如何取当前获得焦点的控件的ID

网友(2):

$(e).attr("id"); 估计你Yearcheck方法的上下文是window。而不是页面某个元素。 你可以试试 function Yearcheck(e, ctrlID) { var b = this === window; alert(b?"this就是window":"this不是window"); } 最后肯定是弹出“this就是window”