国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表
主站蜘蛛池模板: 兴安县| 敦煌市| 郓城县| 泸州市| 方正县| 尼勒克县| 偃师市| 旅游| 三门县| 河池市| 新乡县| 崇信县| 富民县| 凭祥市| 宣恩县| 大田县| 黑山县| 郎溪县| 颍上县| 武宁县| 临漳县| 绥阳县| 永丰县| 青川县| 图们市| 和田市| 南乐县| 县级市| 营口市| 光泽县| 邛崃市| 柏乡县| 海口市| 开平市| 万州区| 唐海县| 岱山县| 措勤县| 桦南县| 桓仁| 秦皇岛市|