首先,你好。我有一个问题 - 我想获得刚刚从 xml 文件创建的视图的顶部像素。有 on create 方法。我需要获取有关布局的信息,但是尚未创建布局。那该怎么办>>?!我尝试使用 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();
}