launcherRootView如何充当下面的对象

时间:2015-01-04 17:09:07

标签: android

下面的代码中的HI如何在android编程中调用launcherRootView以下的那些函数,如果它确实是一个对象,我不知道该对象的创建位置。 要创建对象,您需要使用以下新关键字:

 RelativeLayout launcherRootView = new RelativeLayout()    


   final RelativeLayout launcherRootView = (RelativeLayout)findViewById(R.id.launcher_root_view);
    launcherRootView.getViewTreeObserver().addOnGlobalLayoutListener(newOnGlobalLayoutListener() {

1 个答案:

答案 0 :(得分:0)

在Android中,您可以在launcherRootView文件中初始化视图(例如xml)。然后通过调用findViewById方法获取它们。

所有魔术都是在setContentView()方法中完成的,Activity正在解析包含视图的xml文件并在其中创建对象。

有关详细信息,请查看android developers guides