首先,你好。 我有一个问题 - 我希望得到刚从xml文件创建的视图中的顶部像素。 有创建方法。我需要获取有关布局的信息,但布局尚未创建。那又怎么做>>?!我试图使用OnStart和OnResume方法,但即使这样也不会创建布局。
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
//full screen
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
//full screen
setContentView(R.layout.activity_main);
setIdAndConsturtor();
buildLevels();
setIdViews();
setEvents();
}
答案 0 :(得分:0)
只需调用此方法中的方法:
@Override
public void onWindowFocusChanged(boolean hasFocus) {
super.onWindowFocusChanged(hasFocus);
//Here you can get put the methods
setIdAndConsturtor();
buildLevels();
setIdViews();
setEvents();
}