2013年3月16日
摘要: 01/**02* @note 获取该activity所有view03* @author liuh04* */05publicList<View> getAllChildViews() {06View view =this.getWindow().getDecorView();07returngetAllChildViews(view);08}0910privateList<View> getAllChildViews(View view) {11List<View> allchildren =newArrayList<View>();12if(v 阅读全文
posted @ 2013-03-16 15:51 zhengbeibei 阅读(7779) 评论(1) 推荐(1) 编辑