final static HashMap<String, Integer>listView = new HashMap<String, Integer>()
赋值IDlinearLayout.setId(唯一id)
键值对listView.put(字符串id, 前边定义的唯一int ID)
获取:
public static Integer getViewIdById(String id){
if (listView.containsKey(id))
return listView.get(id)
else
return -1
}
可以的,android中使用布局是为了加快开发,最终控件还是通过解析XML后,通过代码添加的。具体方法:
例如你的布局是一个Linearlayout linear上面有一本Button btn1
要删除这个btn1要做的就是 linear.removeView( btn1 )
动态添加也是一样的:
linear.addView( btn2 )
要注意的是,Button btn2 = new Button( context )这时候控件是没有大小的,必须设置控件大小以后添加了才能看到。设置控件大小的方法是view.setLayoutParams()
希望能够帮到你。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)