-2

首先,你好。我有一个问题 - 我想获得刚刚从 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();



}
4

1 回答 1

0

只需调用其中的方法:

@Override
public void onWindowFocusChanged(boolean hasFocus) {
    super.onWindowFocusChanged(hasFocus);
    //Here you can get put the methods
    setIdAndConsturtor();
    buildLevels();
    setIdViews();
    setEvents();
}
于 2013-02-06T18:59:26.167 回答