gpt4 book ai didi

android - 如何在 android studio 中单击按钮时播放声音?

转载 作者:行者123 更新时间:2023-12-02 23:00:48 25 4
gpt4 key购买 nike

我希望当按下按钮时声音文件开始播放。我已经创建了 raw 文件夹并将 .wav 文件放在那里。问题是我不知道如何做这件事。我在这里检查了类似的问题,但它们似乎没有解决我的问题。我应该怎么办?预先感谢您。

这是我的代码:

import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.TextView;
import android.widget.Button;
import android.media.MediaPlayer;
import android.view.View.OnClickListener;

public class MyActivity extends ActionBarActivity {

int clicked= 0;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_my);

//start


//end

final TextView text = (TextView) findViewById(R.id.textView);
text.setText("Score: 0");

final Button button = (Button) findViewById(R.id.button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
clicked++;
text.setText("Score: " + clicked);
}
});
}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.my, menu);
return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}

这里是 xml 代码:

<ImageView
android:layout_width="100dp"
android:layout_height="173dp"
android:id="@+id/imageView"
android:background="@drawable/aidsv"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="70dp"
android:adjustViewBounds="false" />

<Button
android:layout_width="200dp"
android:layout_height="29dp"
android:text="Click me!"
android:id="@+id/button"
android:background="@drawable/redbottone"
android:layout_marginTop="39dp"
android:layout_below="@+id/imageView"
android:layout_centerHorizontal="true" />

<TextView
android:layout_width="120dp"
android:layout_height="42dp"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Score: "
android:id="@+id/textView"
android:textColor="#FF0000"
android:background="@drawable/sfondotempo"
android:autoText="false"
android:layout_below="@+id/button"
android:layout_centerHorizontal="true"
android:layout_marginTop="39dp" />

最佳答案

        Log.v(TAG, "Initializing sounds...");

final MediaPlayer mp = MediaPlayer.create(this, R.raw.sound);

Button play_button = (Button)this.findViewById(R.id.button);
play_button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Log.v(TAG, "Playing sound...");
mp.start();
}
});

将声音放入 res/raw 文件夹中。

关于android - 如何在 android studio 中单击按钮时播放声音?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26538421/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com