请解释onFinishLayout示例代码?

时间:2011-06-14 07:09:22

标签: android

我已经创建了一个扩展linearlayout的类文件,在其中一个示例中,我看到下面的代码,我无法理解它的需要和重要性。

protected void onFinishInflate() 
{
    super.onFinishInflate();
    ((Activity)getContext()).getLayoutInflater().inflate(R.layout.twotext, this);
    setItems();//this is my method that i have declared below this code
}

1 个答案:

答案 0 :(得分:0)

当布局中的通货膨胀完成时,它将被调用。只需在其上设置项目..

有关完整的详细信息,请阅读文档......