Chrisの梳羽之礁

A look of quick intelligence and soft refinement
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

在Layout中寻找View

Posted on 2011-02-17 11:18  Chrisfang6  阅读(492)  评论(0编辑  收藏  举报

一般有两种情况:1、在当前Activity加载的View中寻找View;2、在其他Layout中寻找View

1、这种情况比较简单。只需调用public final View View.findViewById(int id)方法即可。
2、这种情况需要使用inflate。有两种方法:

① 比较简单,直接使用public static View View.inflate(Context context, int resource, ViewGroup root)来找到对应的View,再使用1的方法来得到View
② 需要用public View LayoutInflater.inflate(int resource, ViewGroup root, boolean attachToRoot)来找到对应的View,再使用1的方法来得到View

LayoutInflater的获取有3种方式:
LayoutInflater inflater = LayoutInflater.from(this);
LayoutInflater inflater = Activity.getLayoutInflater();
LayoutInflater inflater = (LayoutInflater) Activity.getSystemService(LAYOUT_INFLATER_SERVICE);