下面的代码中的HI如何在android编程中调用launcherRootView以下的那些函数,如果它确实是一个对象,我不知道该对象的创建位置。 要创建对象,您需要使用以下新关键字:
RelativeLayout launcherRootView = new RelativeLayout()
final RelativeLayout launcherRootView = (RelativeLayout)findViewById(R.id.launcher_root_view);
launcherRootView.getViewTreeObserver().addOnGlobalLayoutListener(newOnGlobalLayoutListener() {
答案 0 :(得分:0)
在Android中,您可以在launcherRootView
文件中初始化视图(例如xml
)。然后通过调用findViewById
方法获取它们。
所有魔术都是在setContentView()
方法中完成的,Activity
正在解析包含视图的xml
文件并在其中创建对象。
有关详细信息,请查看android developers guides