我想在 OnClickListener 的 RelativeLayout中添加一個視圖:
montrolButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// myParent is a relative layout
// newChild is an ImageView
myParent.addView(newChild);
requestLayout();
}
});
我查看了 HierarchyViewer,但是沒發現添加新的子類,哪裡出錯呢?
你可以這樣:
RelativeLayout rv = (RelativeLayout) this.findViewById(R.id.right3);
ProgressBar iv = new ProgressBar(this);
rv.addView(iv);