- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我为我的一个名为 Aussie Bloke 的角色构建了一个音板 - 该音板包含 30 个按钮和 30 个媒体播放器。我最初使用一个媒体播放器来播放所有按钮,但最终在随机按下大约 20 次后声音就会停止播放。因此,我决定为每个声音使用单独的媒体播放器对象,就像我使用的原始音板模板中所使用的那样。这工作得很好,你可以整天按下按钮并让声音正常工作..但我遇到的问题是,当 Activity 被发送到后台并在几秒钟后再次返回时,当你按下按钮时应用程序崩溃..我尝试创建一个 onResume 方法来准备所有玩家,但这只是使应用程序从一开始就崩溃了。抱歉,我对编码和应用程序构建非常陌生,因此可能有一个我忽略或完全不知道的明显解决方案。
package com.zammacat.aussiebloke1;
import java.io.IOException;
import android.app.Activity;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class AUSSIEBLOKE1 extends Activity {
private static final String BASE64_PUBLIC_KEY = "key here";
MediaPlayer beer1;
MediaPlayer beer2;
MediaPlayer beer3;
MediaPlayer beauty;
MediaPlayer boner;
MediaPlayer death;
MediaPlayer dingo;
MediaPlayer dogupya;
MediaPlayer donotpress;
MediaPlayer enough;
MediaPlayer heaven;
MediaPlayer help;
MediaPlayer hungry;
MediaPlayer kebab;
MediaPlayer kids;
MediaPlayer knees;
MediaPlayer later;
MediaPlayer meatpie;
MediaPlayer medal;
MediaPlayer oath;
MediaPlayer poem;
MediaPlayer politics;
MediaPlayer pub;
MediaPlayer sex;
MediaPlayer sport;
MediaPlayer strewth;
MediaPlayer tango;
MediaPlayer v8;
MediaPlayer what;
MediaPlayer yoursister;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_aussiebloke1);
beer1 = MediaPlayer.create(this, R.raw.beer1);
beer2 = MediaPlayer.create(this, R.raw.beer2);
beer3 = MediaPlayer.create(this, R.raw.beer3);
beauty = MediaPlayer.create(this, R.raw.beauty);
boner = MediaPlayer.create(this, R.raw.boner);
death = MediaPlayer.create(this, R.raw.death);
dingo = MediaPlayer.create(this, R.raw.dingo);
dogupya = MediaPlayer.create(this, R.raw.dogupya);
donotpress = MediaPlayer.create(this, R.raw.donotpress);
enough = MediaPlayer.create(this, R.raw.enough);
heaven = MediaPlayer.create(this, R.raw.heaven);
help = MediaPlayer.create(this, R.raw.help);
hungry = MediaPlayer.create(this, R.raw.hungry);
kebab = MediaPlayer.create(this, R.raw.kebab);
kids = MediaPlayer.create(this, R.raw.kids);
knees = MediaPlayer.create(this, R.raw.knees);
later = MediaPlayer.create(this, R.raw.later);
meatpie = MediaPlayer.create(this, R.raw.meatpie);
medal = MediaPlayer.create(this, R.raw.medal);
oath = MediaPlayer.create(this, R.raw.oath);
poem = MediaPlayer.create(this, R.raw.poem);
politics = MediaPlayer.create(this, R.raw.politics);
pub = MediaPlayer.create(this, R.raw.pub);
sex = MediaPlayer.create(this, R.raw.sex);
sport = MediaPlayer.create(this, R.raw.sport);
strewth = MediaPlayer.create(this, R.raw.strewth);
tango = MediaPlayer.create(this, R.raw.tango);
v8 = MediaPlayer.create(this, R.raw.v8);
what = MediaPlayer.create(this, R.raw.what);
yoursister = MediaPlayer.create(this, R.raw.yoursister);
Button b01 = (Button) findViewById(R.id.beer1);
b01.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
beer1.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
beer1.start();
}
});
Button b02 = (Button) findViewById(R.id.beer2);
b02.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
beer2.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
beer2.start();
}
});
Button b03 = (Button) findViewById(R.id.beer3);
b03.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
beer3.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
beer3.start();
}
});
Button b04 = (Button) findViewById(R.id.beauty);
b04.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
beauty.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
beauty.start();
}
});
Button b05 = (Button) findViewById(R.id.boner);
b05.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
boner.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
boner.start();
}
});
Button b06 = (Button) findViewById(R.id.death);
b06.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
death.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
death.start();
}
});
Button b07 = (Button) findViewById(R.id.dingo);
b07.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
dingo.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
dingo.start();
}
});
Button b08 = (Button) findViewById(R.id.dogupya);
b08.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
dogupya.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
dogupya.start();
}
});
Button b09 = (Button) findViewById(R.id.donotpress);
b09.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
donotpress.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
donotpress.start();
}
});
Button b10 = (Button) findViewById(R.id.enough);
b10.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
enough.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
enough.start();
}
});
Button b11 = (Button) findViewById(R.id.heaven);
b11.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
heaven.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
heaven.start();
}
});
Button b12 = (Button) findViewById(R.id.help);
b12.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
help.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
help.start();
}
});
Button b13 = (Button) findViewById(R.id.hungry);
b13.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
hungry.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
hungry.start();
}
});
Button b14 = (Button) findViewById(R.id.kebab);
b14.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
kebab.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
kebab.start();
}
});
Button b15 = (Button) findViewById(R.id.kids);
b15.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
kids.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
kids.start();
}
});
Button b16 = (Button) findViewById(R.id.knees);
b16.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
knees.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
knees.start();
}
});
Button b17 = (Button) findViewById(R.id.later);
b17.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
later.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
later.start();
}
});
Button b18 = (Button) findViewById(R.id.meatpie);
b18.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
meatpie.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
meatpie.start();
}
});
Button b19 = (Button) findViewById(R.id.medal);
b19.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
medal.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
medal.start();
}
});
Button b20 = (Button) findViewById(R.id.oath);
b20.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
oath.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
oath.start();
}
});
Button b21 = (Button) findViewById(R.id.poem);
b21.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
poem.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
poem.start();
}
});
Button b22 = (Button) findViewById(R.id.politics);
b22.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
politics.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
politics.start();
}
});
Button b23 = (Button) findViewById(R.id.pub);
b23.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
pub.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
pub.start();
}
});
Button b24 = (Button) findViewById(R.id.sex);
b24.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
sex.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
sex.start();
}
});
Button b25 = (Button) findViewById(R.id.sport);
b25.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
sport.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
sport.start();
}
});
Button b26 = (Button) findViewById(R.id.strewth);
b26.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
strewth.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
strewth.start();
}
});
Button b27 = (Button) findViewById(R.id.tango);
b27.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
tango.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
tango.start();
}
});
Button b28 = (Button) findViewById(R.id.v8);
b28.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
v8.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
v8.start();
}
});
Button b29 = (Button) findViewById(R.id.what);
b29.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
what.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
what.start();
}
});
Button b30 = (Button) findViewById(R.id.yoursister);
b30.setOnClickListener(new OnClickListener(){
public void onClick(View v){
try {
yoursister.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
yoursister.start();
}
});
}
protected void onStop() {
super.onStop();
beer1.release();
beer2.release();
beer3.release();
beauty.release();
boner.release();
death.release();
dingo.release();
dogupya.release();
donotpress.release();
enough.release();
heaven.release();
help.release();
hungry.release();
kebab.release();
kids.release();
knees.release();
later.release();
meatpie.release();
medal.release();
oath.release();
poem.release();
politics.release();
pub.release();
sex.release();
sport.release();
strewth.release();
tango.release();
v8.release();
what.release();
yoursister.release();
}
}
最佳答案
您需要在 Activity 中实现 onResume()
方法并在其中重新创建媒体播放器对象:
public void onResume() {
super.onResume();
// ...
beer1 = MediaPlayer.create(this, R.raw.beer1);
beer2 = MediaPlayer.create(this, R.raw.beer2);
beer3 = MediaPlayer.create(this, R.raw.beer3);
// ...
}
您可以在此处阅读有关 Activity 生命周期的更多信息:http://developer.android.com/training/basics/activity-lifecycle/index.html
关于Activity 恢复时 Android SoundBoard 崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14795790/
有什么方法可以恢复删除的元素吗? 这是我删除元素的代码 myFunction() { var width = window.innerWidth; var February = doc
我有一个 TokuDB 表,由于某种原因缺少 ***_status.tokudb 文件。 我还不确定文件是否由于 TokuDB 崩溃而丢失。 问题是: 有没有办法从主要文件和关键文件(我可以从 tok
我正在 Windows 7 (x86) 上运行带有 Workbench 6.3.8 的 32 位 MySQL Server 5.7.22 本地实例(必须选择 32 位版本 - 所以,较旧的版本)。 我
1、备份 <% SQL="backup database 数据库名 to disk='"&Serve
1、ASP中怎么实现SQL数据库备份、恢复! 答:asp在线备份sql server数据库: 1、备份 <% SQL="ba
我在 R 中使用 stats::filter 函数来理解 R 中的 ARIMA 模拟(如在函数 stats::arima.sim 中)和估计。我知道 stats::filter 将线性过滤器应用于向量
我已经浏览了示例应用程序的文档和代码,并发现 files/objectbox/objectbox/data.mdb 是存储所有数据的默认文件。 假设我的理解是正确的,我有几个问题找不到文档: 我想在我
为了恢复非续订订阅类型的 InAppPurchase,我已经实现了服务器来处理此问题。 但在购买过程中,iTunes 有时不会要求用户验证他们的卡详细信息, 在这种情况下,它会在后台发送应用程序并显示
我的问题是寻找cocos2d游戏期间暂停/恢复状态(包括所有需要保存的数据信息)的设计解决方案。 包括但不限于以下情况: 1).用户选择退出,然后弹出一个对话框供用户选择“直接退出”、“暂停”; 2)
在 Mercurial 中,我有一个旧的变更集,除了对单个文件的更改外,它都很好。我将如何恢复对该单个文件的更改? 即使只是能够在上一个变更集中查看文件的状态也会很好,然后我可以剪切和粘贴。 我的 M
我的一项职能遇到了困难。我想做的是计时器在页面加载后立即启动,并且只有一个带有启动/恢复的按钮。我无法在代码中找出需要更改功能的位置。有人可以帮助我吗?谢谢! HTML: , Javascr
我正在阅读Scrap your type classes 。这为类型类提供了替代方案。然而,我被Paul Chiusano的评论所困扰。其中讨论了恢复 do 表示法 语法。 坦白说,我无法理解 ret
当 OrientDB 因某人重新启动机器而非正常关闭时,OrientDB 最终会处于数据恢复失败的状态。对于如何从这种不正常的关闭中正常恢复有什么建议吗?我们正在寻找系统在断电期间能够自行恢复的方法。
我正在构建一个 Electron 应用程序,如果发生崩溃,它必须重新加载渲染进程窗口。 目前我可以从主进程重新启动应用程序 app.relaunch(); app.quit(); 但我无法检测到窗口崩
我有 3 个 Activity ,比如说 MainActivity、 Activity 2 和 Activity 3。 在 MainActivity 中,我有一个按钮(开始/停止),当我单击此按钮时,
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 11 年前。 Improve thi
Twilio 是否支持暂停和恢复内容播放。换句话说,我有相当长的文件将播放给调用者,并且我正在尝试找到一种方法来实现暂停和恢复功能。在播放某些内容的过程中,我希望用户能够按数字暂停,然后再次按数字从音
我已经提交了 A、B、C、D 和 E。我意识到在提交 B 中发生了一些非常糟糕的事情,所以我想回到 A,这次正确地进行之前搞砸了 B 的更改,然后重新应用 C 、 D 和 E 自动。 您可能想知道为什
我的一个文件被“标记为文本”,图标也发生了变化。实际上这是一个 PHP 文件。我尝试过使用 Help -> Find Action -> Mark As 尝试将其恢复为 PHP 突出显示,但它不起作用
我有一些 SSE 程序,可以将循环中的内存归零,当指针未对齐时,它会引发 SIGSEGV进入我的处理程序。我可以在此类处理程序中获取更多信息吗例行公事,现在我不知道它是在哪里完成的,我也可以吗以某种可
我是一名优秀的程序员,十分优秀!