- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的应用程序中有16个按钮,当我单击它们时可以播放声音。.我想选择并从SD卡导入声音。有关如何执行操作的任何建议和示例?
这是我的Java代码:
public class App extends MultiTouchActivity {
SoundPool sp;
MediaPlayer mp;
int mSoundId, mSoundId1, mSoundId2, mSoundId3, mSoundId4, mSoundId5,
mSoundId6, mSoundId7, mSoundId8, mSoundId9, mSoundId10, mSoundId11,
mSoundId12, mSoundId13, mSoundId14, mSoundId15;
int mStreamId, mStreamId1, mStreamId2, mStreamId3, mStreamId4, mStreamId5,
mStreamId6, mStreamId7, mStreamId8, mStreamId9, mStreamId10,
mStreamId11, mStreamId12, mStreamId13, mStreamId14,
mStreamId15 = 0;
@Override
public void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
getWindow().clearFlags(
WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
this.setVolumeControlStream(AudioManager.STREAM_MUSIC);
sp = new SoundPool(5, AudioManager.STREAM_MUSIC, 0);
mSoundId = sp.load(this, R.raw.dub1, 1);
mSoundId1 = sp.load(this, R.raw.dub2, 1);
mSoundId2 = sp.load(this, R.raw.dub3, 1);
mSoundId3 = sp.load(this, R.raw.dub4, 1);
mSoundId4 = sp.load(this, R.raw.dub5, 1);
mSoundId5 = sp.load(this, R.raw.dub6, 1);
mSoundId6 = sp.load(this, R.raw.dub7, 1);
mSoundId7 = sp.load(this, R.raw.dub8, 1);
mSoundId8 = sp.load(this, R.raw.dub9, 1);
mSoundId9 = sp.load(this, R.raw.dub10, 1);
mSoundId10 = sp.load(this, R.raw.dub11, 1);
mSoundId11 = sp.load(this, R.raw.dub12, 1);
mSoundId12 = sp.load(this, R.raw.dub13, 1);
mSoundId13 = sp.load(this, R.raw.dub14, 1);
mSoundId14 = sp.load(this, R.raw.dub15, 1);
mSoundId15 = sp.load(this, R.raw.dub16, 1);
}
//
public void dubstep1(View view) {
if (mStreamId != 0) {
sp.stop(mStreamId);
}
mStreamId = sp.play(mSoundId, 1, 1, 1, 0, 1f);
}
public void dubstep2(View view) {
if (mStreamId1 != 0) {
sp.stop(mStreamId1);
}
mStreamId1 = sp.play(mSoundId1, 1, 1, 1, 0, 1f);
}
public void dubstep3(View view) {
if (mStreamId2 != 0) {
sp.stop(mStreamId2);
}
mStreamId2 = sp.play(mSoundId2, 1, 1, 1, 0, 1f);
}
public void dubstep4(View view) {
if (mStreamId3 != 0) {
sp.stop(mStreamId3);
}
mStreamId3 = sp.play(mSoundId3, 1, 1, 1, 0, 1f);
}
public void dubstep5(View view) {
if (mStreamId4 != 0) {
sp.stop(mStreamId4);
}
mStreamId4 = sp.play(mSoundId4, 1, 1, 1, 0, 1f);
}
public void dubstep6(View view) {
if (mStreamId5 != 0) {
sp.stop(mStreamId5);
}
mStreamId5 = sp.play(mSoundId5, 1, 1, 1, 0, 1f);
}
public void dubstep7(View view) {
if (mStreamId6 != 0) {
sp.stop(mStreamId6);
}
mStreamId6 = sp.play(mSoundId6, 1, 1, 1, 0, 1f);
}
public void dubstep8(View view) {
if (mStreamId7 != 0) {
sp.stop(mStreamId7);
}
mStreamId7 = sp.play(mSoundId7, 1, 1, 1, 0, 1f);
}
public void dubstep9(View view) {
if (mStreamId8 != 0) {
sp.stop(mStreamId8);
}
mStreamId8 = sp.play(mSoundId8, 1, 1, 1, 0, 1f);
}
public void dubstep10(View view) {
if (mStreamId9 != 0) {
sp.stop(mStreamId9);
}
mStreamId9 = sp.play(mSoundId9, 1, 1, 1, 0, 1f);
}
public void dubstep11(View view) {
if (mStreamId10 != 0) {
sp.stop(mStreamId10);
}
mStreamId10 = sp.play(mSoundId10, 1, 1, 1, 0, 1f);
}
public void dubstep12(View view) {
if (mStreamId11 != 0) {
sp.stop(mStreamId11);
}
mStreamId11 = sp.play(mSoundId11, 1, 1, 1, 0, 1f);
}
public void dubstep13(View view) {
if (mStreamId12 != 0) {
sp.stop(mStreamId12);
}
mStreamId12 = sp.play(mSoundId12, 1, 1, 1, 0, 1f);
}
public void dubstep14(View view) {
if (mStreamId13 != 0) {
sp.stop(mStreamId13);
}
mStreamId13 = sp.play(mSoundId13, 1, 1, 1, 0, 1f);
}
public void dubstep15(View view) {
if (mStreamId14 != 0) {
sp.stop(mStreamId14);
}
mStreamId14 = sp.play(mSoundId14, 1, 1, 1, 0, 1f);
}
public void dubstep16(View view) {
if (mStreamId15 != 0) {
sp.stop(mStreamId15);
}
mStreamId15 = sp.play(mSoundId15, 1, 1, 1, 0, 1f);
}
最佳答案
如果要从SD卡加载,请获取要播放的音频文件的路径,然后使用SoundPool.load(String path, int priority)
加载它。 Environment.getExternalStorageDirectory
在这里对您有用,以帮助您找到文件。
另外请注意,您应该真正学习一些代码重用,您的手指会感谢您。没有理由只需要更改一个变量就重复16次相同的行为。
您可以将所有这16个功能替换为:
int[] mStreamIds = new int[16];
int[] mSoundIds = new int[16];
public void dubstep(int id) {
if(mStreamIds[id] != 0){
sp.stop(mStreamIds[id]);
}
mStreamIds[id] = sp.play(mSoundIds[id], 1,1,1,0,1f);
}
关于android - 如何导入声音并在Android中使用它们?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13126988/
当我这样做时... import numpy as np ...我可以使用它但是... import pprint as pp ...不能,因为我需要这样做... from pprint import
我第一次尝试将 OpenCV 用于 Python 3。要安装,我只需在终端中输入“pip3 install opencv-python”。当我这样做时,我在 Finder(我在 Mac 上)中看到,在
如果有一个库我将使用至少两种方法,那么以下之间在性能或内存使用方面是否有任何差异? from X import method1, method2 和 import X 最佳答案 有区别,因为在 imp
我正在从 lodash 导入一些函数,我的同事告诉我,单独导入每个函数比将它们作为一个组导入更好。 当前方法: import {fn1, fn2, fn3} from 'lodash'; 首选方法:
之间有什么关系: import WSDL 中的元素 -和- import元素和在 XML Schema ...尤其是 location 之间的关系前者和 schemaLocation 的属性后者的属性
我在从 'theano.configdefaults' 导入 'local_bitwidth' 时遇到问题。并显示以下消息: ImportError
我注意到 React 可以这样导入: import * as React from 'react'; ...或者像这样: import React from 'react'; 第一个导入 react
对于当前的项目,我必须使用矩阵中提供的信息并对其进行数学计算,以及使用 ITK/VTK 函数来显示医疗信息/渲染。基本上我必须以(我猜)50/50 的方式同时使用 matlab 例程和 VTK/ITK
当我看到 pysqlite 的示例时,SQLite 库有两个用例。 from sqlite3 import dbapi2 as sqlite3 和 import sqlite3 为什么有两种方式支持s
我使用 Anaconda Python 发行版:Python 2.7 x64 和 Windows 7 SP1 x64 Ultimate。 当我import matplotlib.pyplot时,我得到
目录 【容器】镜像导出/导入 导出 导入 带标签 不带标签,后期修改 【仓库】镜像导出/导入
我正在寻找一种导入模块的方法,以便我可以从子文件夹 project/v0 和根文件夹 project 运行脚本。/p> 我在 python 3.6 中的文件结构(这就是没有初始化文件的原因) proj
我通常被告知以下是不好的做法。 from module import * 主要原因(或者有人告诉我)是,您可能会导入一些您不想要的东西,并且它可能会隐藏另一个模块中具有类似名称的函数或类。 但是,Py
我为 urllib (python3) 编写了一个小包装器。在if中导入模块是否正确且安全? if self.response_encoding == 'gzip': import gzip
我正在 pimcore 中创建一个新站点。有没有办法导出/导入 pimcore 站点的完整数据,以便我可以导出 xml/csv 格式的 pimcore 数据进行必要的更改,然后将其导入回来? 最佳答案
在 Node JS 中测试以下模块布局,看起来本地导出的定义总是在名称冲突的情况下替换外部导出的定义(参见 B.js 中的 f1)。 A.js export const f1 = 'A' B.js e
我在使用 VBA 代码时遇到了一些问题,该代码应该将 excel 数据导入我的 Access 数据库。当我运行代码时,我收到一个运行时错误“运行时错误 438 对象不支持此属性或方法”。来自我在其他论
我有一个名为 elements 的包,其中包含按钮、trifader、海报等内容。在 Button 类中,我正在执行 from elements import * 这执行正常,当我尝试 print(p
在我长期使用 python 的经验中,我遇到了一个非常奇怪的问题。 提前我想说我想知道为什么会发生这种情况 ,而不是如何更改我的代码或如何修复它,因为我也可以做到。 我正在使用 python2.7.3
我正在更新我的包。但是,我正在为依赖项/导入而苦苦挣扎。我使用了两个冲突的包 - ggplot2和 psych及其功能 alpha当然还有 alpha ggplot2 的对象不同于 alpha psy
我是一名优秀的程序员,十分优秀!