gpt4 book ai didi

java - android.app.SuperNotCalledException : Activity did not call through to super. onCreate()

转载 作者:太空宇宙 更新时间:2023-11-03 12:07:43 28 4
gpt4 key购买 nike

这是我的 Android 媒体播放器代码。当我在 MediaPlayer mp = new MediaPlayer() 行断点以 Debug 模式运行时,我不知道这段代码中缺少什么。 zip 文件夹中的所有文件都已播放。但是当我在正常模式下运行应用程序时,第一个文件被播放,然后我得到这个错误:

android.app.SuperNotCalledException: Activity {com.example.mediaplayer/com.example.mediaplayer.MainActivity} did not call through to super.onCreate()

代码:

package com.example.mediaplayer;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
import org.apache.commons.io.IOUtils;
import android.app.Activity;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.os.Environment;
import android.util.Log;
import android.widget.Button;

public class MainActivity extends Activity {
private MediaPlayer mp;
private static final String MAIN_TAG ="ERROR";

@Override
protected void onCreate(Bundle savedInstanceState) {
try {
//final String file_loc= Environment.getExternalStorageDirectory().toString();
//Log.i("location",file_loc);
ZipFile zip = new ZipFile("/storage/emulated/0/AjeshDocument/sample.zip");

for(int i=1;i<7;i++){

ZipEntry entry = zip.getEntry("sample/rihanna_"+i+".mp3");
if (entry != null) {
InputStream in = zip.getInputStream(entry);
// see Note #3.
File tempFile = File.createTempFile("_AUDIO_", ".wav");
FileOutputStream out = new FileOutputStream(tempFile);
IOUtils.copy(in, out);

// do something with tempFile (like play it)
File f = tempFile;
try {
if (f.exists())
{
Log.i(MAIN_TAG,"Audio file found!");
MediaPlayer mp = new MediaPlayer();
FileInputStream fis = new FileInputStream(f);
mp.setDataSource(fis.getFD());
mp.prepare();
//mp.setLooping(false);
mp.start();
//mp.stop();
// mp.release();
Log.i(MAIN_TAG,"Pronounciation finished!");
}


else
{
Log.i(MAIN_TAG,"File doesn't exist!!");
}

}
catch (IOException e)
{
Log.i(MAIN_TAG,e.toString());
}
}
else {
// no such entry in the zip
}
} //for end
mp.release();

}
catch (Exception e) {
// handle your exception cases...

Log.i(MAIN_TAG,e.toString());

}

}

@Override
protected void onResume() {
Log.w("Info", "App Resume");

super.onResume();
}

@Override
protected void onStop() {
Log.w("Info", "App stopped");

super.onStop();
}

@Override
protected void onDestroy() {
Log.w("Info", "App destoryed");

super.onDestroy();
}

}

最佳答案

您没有调用 ActivityonCreate() 方法,即父类(super class)的方法。添加对 MainActivityonCreate() 方法的调用:

public class MainActivity extends Activity {

private MediaPlayer mp;
private static final String MAIN_TAG ="ERROR";

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); // this line is missing

// your code below ...

关于java - android.app.SuperNotCalledException : Activity did not call through to super. onCreate(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23851962/

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