我需要将根视图传递给函数才能显示弹出窗口
instructions_popup_window.showAtLocation( "parent view", Gravity.CENTER, 0, 0);
问题在于"parent view"
。
在onCreate
我有
setContentView(R.layout.splash);
我的根视图是:"R.layout.splash"
还是"findViewById(R.layout.splash)"
还是别的什么?
答案 0 :(得分:2)
根视图是初始布局中最顶层的视图。
你可以给它一个ID然后findviewbyid
它或者你可以用这个函数得到活动的根视图:
getWindow().getDecorView()