gpt4 book ai didi

java - 创建 View 后运行方法 - Android

转载 作者:行者123 更新时间:2023-11-29 10:03:24 26 4
gpt4 key购买 nike

我目前有一个创建 View 的 Activity 。此 View 使用其他类(例如创建随机整数序列的类)。创建 View 后,我需要运行一个方法(它将使用位图显示序列)。因此,一旦用户单击“开始游戏”,就会显示该序列。

我尝试在 onCreate 方法中设置内容 View 后调用该方法,方法是未正确生成序列(全为 0)。我也在 myView 类中使用 onStart 和 onFinishInflate 进行了尝试。

有什么方法可以在所有东西都膨胀和初始化后运行这个方法吗?所以在用户点击“开始游戏”并且 View 发生变化后,需要运行该方法。

感谢您的关注。

编辑:一次失败的尝试。

@Override
protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);
this.gameView = new GameView(getApplicationContext(), getCellSource(getApplicationContext()));
setContentView(this.gameView);
// this.gameView.displaySequence(this.gameView.gameEngine.getGenSequence()); Need this to run once view is displayed.
}

最佳答案

尝试使用 ViewTreeObserver如下:

final View yourView = View.inflate(....);
ViewTreeObserver observer = yourView .getViewTreeObserver();

observer.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {

@Override
public void onGlobalLayout() {
yourView.getViewTreeObserver().removeGlobalOnLayoutListener(this);
// Do what you need with yourView here...

}
});

请注意,函数 removeGlobalOnLayoutListener(this) 在某些 sdk 版本中有所不同。

关于java - 创建 View 后运行方法 - Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16297587/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com