0
在Android中,您可以使用findViewById()來查找動態添加的控件嗎?查找Android動態控件
添加在一個類似的方式:
Button btn=new Button(this);
btn.setId(1);
btn.setBackgroundResource(R.drawable.image);
Relativelayout.addView(btn);
感謝
在Android中,您可以使用findViewById()來查找動態添加的控件嗎?查找Android動態控件
添加在一個類似的方式:
Button btn=new Button(this);
btn.setId(1);
btn.setBackgroundResource(R.drawable.image);
Relativelayout.addView(btn);
感謝
您可以使用此:
//view.findViewById(id); here pass the same id which you have set earlier for a particular view, while adding view to layout/view.
Button btn = (Button) relativeLayout.findViewById(1);
太棒了,謝謝 – user614143
是你可以....你需要調用Relativelayout.findViewById(如果變量的名字是Relativelayout) – Selvin
這很有用,謝謝 – user614143