国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

給按鈕點(diǎn)擊事件添加音效;

2019-11-09 14:53:12
字體:
供稿:網(wǎng)友

編寫布局文件只添加一個(gè)button;

<LinearLayout 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" tools:context="com.example.test4.MainActivity" > <Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button" /></LinearLayout>

編寫代碼;

package com.example.test4;import android.app.Activity;import android.media.AudioManager;import android.media.SoundPool;import android.os.Bundle;import android.view.View;import android.view.View.OnClickListener;import android.widget.ArrayAdapter;import android.widget.AutoCompleteTextView;import android.widget.Button;public class MainActivity extends Activity { PRivate Button button ; private SoundPool sPool;//聲明一個(gè)sPool private int music;//定義一個(gè)整型用load();來設(shè)置suondID @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); button =(Button) findViewById(R.id.button1); sPool =new SoundPool(10, AudioManager.STREAM_SYSTEM, 5);//第一個(gè)參數(shù)為同時(shí)播放數(shù)據(jù)流的最大個(gè)數(shù),第二數(shù)據(jù)流類型,第三為聲音質(zhì)量 music=sPool.load(this, R.raw.aaa, 1);//把你的聲音素材放到res/raw里,第2個(gè)參數(shù)即為資源文件,第3個(gè)為音樂的優(yōu)先級 button.setOnClickListener( new OnClickListener() { @Override public void onClick(View v) { sPool.play(music, 1, 1, 0, 0, 1); } });// }}

3.點(diǎn)擊提交按鈕,就會(huì)自動(dòng)播放, /src/raw文件夾下的aaa.mp3音樂文件


發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 甘孜| 巴林左旗| 桐柏县| 临海市| 山西省| 临海市| 定安县| 昌图县| 怀安县| 平原县| 清涧县| 永寿县| 巢湖市| 渑池县| 宣汉县| 水富县| 嘉义市| 洪洞县| 科尔| 永寿县| 田阳县| 东乡县| 平陆县| 侯马市| 绵阳市| 苍山县| 平江县| 昌黎县| 偃师市| 阳泉市| 涟源市| 铅山县| 许昌县| 蓬莱市| 怀宁县| 方正县| 礼泉县| 开鲁县| 湖南省| 湘乡市| 桃园县|