我打开了一个新项目-
现在我想做的是 - 通过按下按钮,我想要播放 mp3 文件 - 而且每次按下按钮时,声音文件都会再次从头开始播放 - 所以让我们说mp3 的长度为 10 秒,我按下按钮开始播放,4 秒后我再次按下按钮,声音将再次播放。
现在我想知道的是- 1- 我应该把 mp3 文件放在哪里?
2-我必须添加什么代码才能在按下按钮时播放mp3文件(我们称之为mp3文件click_sound.mp3)?
3-我需要在代码中添加什么以便每次按下按钮时都会再次播放声音?
这是 MainActivity.java 的代码 -
package com.example.test1;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
这是activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/play" />
</RelativeLayout>