作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试设计一个主屏幕上有 3 个按钮的应用程序;当用户按下前两个按钮时,它会播放原始文件夹中的不同音乐。主屏幕上的第三个按钮应将用户带到下一个也有按钮的屏幕。
我尝试在模拟器上运行我的应用程序。它在主屏幕的前两个按钮上播放音乐,但是当我单击第三个(下一步)按钮时,它显示“不幸的是,您的应用程序已停止”。我不知道我的代码有什么问题。
任何帮助将不胜感激。下面是我的 MAIN 和 Second 类 JAVA 代码,main.xml
、activity_second.xml
和manifest.xml。
主要Java代码
import android.app.Activity;
import android.content.Intent;
import android.media.AudioManager;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
public class Audio extends Activity implements OnClickListener {
private MediaPlayer mp;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
setVolumeControlStream(AudioManager.STREAM_MUSIC);
findViewById(R.id.button_1).setOnClickListener(this);
findViewById(R.id.button_2).setOnClickListener(this);
findViewById(R.id.button_3).setOnClickListener(this);
}
public void onClick(View v) {
int resId = 1;
switch (v.getId()) {
case R.id.button_1: resId = R.raw.button_1; break;
case R.id.button_2: resId = R.raw.button_2; break;
case R.id.button_3:
startActivity(new Intent(Audio.this,SecondActivity.class));
break;
}
// Release any resources from previous MediaPlayer
if (mp != null) {
mp.release();
}
// Create a new MediaPlayer to play this sound
mp = MediaPlayer.create(this, resId);
mp.start();
}
}
二级Java代码
import android.app.Activity;
import android.media.AudioManager;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.view.View;
public class SecondActivity extends Activity {
private MediaPlayer mp;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_second);
setVolumeControlStream(AudioManager.STREAM_MUSIC);
}
public void onClick(View v) {
int resId = 1;
switch (v.getId()) {
case R.id.button_4: resId = R.raw.button_4; break;
case R.id.button_5: resId = R.raw.button_5; break;
}
// Release any resources from previous MediaPlayer
if (mp != null) {
mp.release();
}
// Create a new MediaPlayer to play this sound
mp = MediaPlayer.create(this, resId);
mp.start();
}
}
Main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="10dip"
android:text="@string/directions" />
<TableLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dip"
android:stretchColumns="*" >
<Button
android:id="@+id/button_1"
android:text="@string/_1" />
<Button
android:id="@+id/button_2"
android:text="@string/_2" />
<Button
android:id="@+id/button_3"
android:text="@string/_3" />
</TableLayout>
</LinearLayout>
activity_second.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="10dip"
android:text="@string/directions" />
<TableLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dip"
android:stretchColumns="*" >
<Button
android:id="@+id/button_4"
android:text="@string/_4" />
<Button
android:id="@+id/button_5"
android:text="@string/_5" />
</TableLayout>
</LinearLayout>
Manifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.example.audio"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="11" />
<application android:icon="@drawable/ic_launcher"
android:label="@string/app_name">
<activity android:name=".Audio"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".SecondActivity"/>
</application>
最佳答案
问题是,在开关内的音频 Activity 中,当您按下第三个按钮“case R.id.button_3:”时,您将启动 SecondActivity,但随后执行“中断”,导致 MediaPlayer 开始播放资源默认值为 1(不存在)。在这种特定情况下,将“break”更改为“return”,就可以了。原代码:
case R.id.button_3:
startActivity(new Intent(Audio.this,SecondActivity.class));
break;
}
新代码:
case R.id.button_3:
startActivity(new Intent(Audio.this,SecondActivity.class));
return;
}
您应该将 onClick() 方法更改为以下内容,以便在进入第二个 Activity 时音乐停止。
public void onClick(View v) {
int resId = 1;
// Release any resources from previous MediaPlayer
if (mp != null) {
mp.release();
}
// Create a new MediaPlayer to play this sound
mp = MediaPlayer.create(this, resId);
mp.start();
switch (v.getId()) {
case R.id.button_4: resId = R.raw.button_4; break;
case R.id.button_5: resId = R.raw.button_5; break;
}
}
希望有帮助。
关于java - 不幸的是音频已停止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24853395/
我们有一个使用 Eclipse 和 Maven 的多模块项目。过去我能让它工作的唯一方法是对项目使用平面布局,其中父模块是其他模块的对等体。这适用于 m2eclipse 和 Subversion。 现
我是一名优秀的程序员,十分优秀!