gpt4 book ai didi

inner-classes - Android 中的两个 onCreate() 方法?

转载 作者:搜寻专家 更新时间:2023-11-01 08:13:35 26 4
gpt4 key购买 nike

我正在处理另一个示例(在此处找到 Loading MP3s into the Sound Pool in Android)。但出于某种原因,我最终得到了两个 onCreate() 方法,如果我删除一个方法,我会收到错误消息。

我正在尝试将 MP3 加载到 Soundpool 一次,然后在其他 Activity 中调用它们。

我的代码:

class MyApp extends Application {
private static MyApp singleton;

private static SoundPool mSoundPool;

public onCreate() { // ##### Deleting this gives me errors ###, not deleting it gives me 1 error.
super.onCreate();
singleton = this;
mSoundPool = new SoundPool(1, AudioManager.STREAM_MUSIC, 0);// Just an example
}

public static MyApp getInstance() {
return singleton;
}

public SoundPool getSoundPool() {
return mSoundPool;
}
}


public class TestAndroidGlobalsActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}

最佳答案

您的代码每个类只有一个 onCreate 方法。它们服务于不同的目的,并在操作系统创建这些类中的每一个时被调用。

您的 MyApp.onCreate 在创建应用程序时被调用,并在您的 MyApp 类中设置应用程序范围的状态。

您的 TestAndroidGlobalsActivity.onCreate 在创建 Activity 时被调用,并为该特定 Activity 设置状态并初始化其 UI。

关于inner-classes - Android 中的两个 onCreate() 方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7079676/

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