MediaPlayer - 放开并按下按钮时播放和停止
MediaPlayer - Playing and stopping when let go and press on button
我将从分享我的代码开始。
package com.example.onebuttonpressimage;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageButton;
import android.media.MediaPlayer;
import android.view.MotionEvent; // new import library for onclick listener
public class MainActivity extends AppCompatActivity {
// declare the objects and variables
private ImageButton buttonJava; // creates the JAVA object that holds button attributes and methods
private MediaPlayer sound = null; // creates the JAVA object that holds the mediaplayer attributes and methods
//private boolean pressed=false;
// Creates the app window ===================================================================================
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
sound = MediaPlayer.create(this, R.raw.beep); // ties the JAVA mediaplayer object to the sound file
buttonJava = (ImageButton) findViewById(R.id.buttonXML); // ties the JAVA button object to the XML object
buttonJava.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
buttonJava.setBackgroundResource(R.drawable.button_pressed);
sound.start();
return true;
} else if (event.getAction() == MotionEvent.ACTION_UP) {
buttonJava.setBackgroundResource(R.drawable.button_not_pressed);
}
return false;
}
});
}}
这就是我正在尝试做的事情。我试图让它播放声音,直到我松开按钮。我尝试使用 sound.stop()
但它只会工作一次,然后在我重新启动应用程序之前不再工作。有人有什么想法吗?我想尝试让它按照我需要的方式运行,而不是添加太多。如果有人需要进一步说明我需要什么,请告诉我。以下是我的 XML 布局文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
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="com.example.onebuttonpressedimage.MainActivity">
<ImageButton
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="17dp"
android:id="@+id/buttonXML"
android:background="@drawable/blue"
android:layout_centerHorizontal="true"
android:onClick="onButtonClick" />
</RelativeLayout>
这应该可以解决问题 -
MainActivity.java
import android.media.MediaPlayer;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.MotionEvent;
import android.view.View;
import android.widget.ImageButton;
public class MainActivity extends AppCompatActivity {
// declare the objects and variables
private ImageButton buttonJava; // creates the JAVA object that holds button attributes and methods
private MediaPlayer sound = null; // creates the JAVA object that holds the mediaplayer attributes and methods
//private boolean pressed=false;
// Creates the app window ===================================================================================
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
sound = MediaPlayer.create(this, R.raw.beep); // ties the JAVA mediaplayer object to the sound file
sound.setLooping(true);
buttonJava = (ImageButton) findViewById(R.id.buttonXML); // ties the JAVA button object to the XML object
buttonJava.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
buttonJava.setPressed(true);
sound.start();
} else if (event.getAction() == MotionEvent.ACTION_UP) {
buttonJava.setPressed(false);
sound.pause();
}
return true;
}
});
}
}
也使用按钮选择器而不是在 onTouchListener 中设置按钮背景,如下所示 -
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
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="com.mid.test.helpttest.MainActivity">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/button_selector"
android:id="@+id/buttonXML"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"/>
</RelativeLayout>
drawable/button_selector.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/button_not_pressed" android:state_enabled="false" />
<item android:drawable="@drawable/button_pressed" android:state_enabled="true" android:state_pressed="true" />
<item android:drawable="@drawable/button_not_pressed" android:state_enabled="true" android:state_focused="true" />
<item android:drawable="@drawable/button_not_pressed" android:state_enabled="true" />
</selector>
在对 buttonJava java 代码进行了一些修改后,我能够自己完成它,其中包含一些 seekTo、循环和放手时停止以使其更好地工作。
我将从分享我的代码开始。
package com.example.onebuttonpressimage;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageButton;
import android.media.MediaPlayer;
import android.view.MotionEvent; // new import library for onclick listener
public class MainActivity extends AppCompatActivity {
// declare the objects and variables
private ImageButton buttonJava; // creates the JAVA object that holds button attributes and methods
private MediaPlayer sound = null; // creates the JAVA object that holds the mediaplayer attributes and methods
//private boolean pressed=false;
// Creates the app window ===================================================================================
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
sound = MediaPlayer.create(this, R.raw.beep); // ties the JAVA mediaplayer object to the sound file
buttonJava = (ImageButton) findViewById(R.id.buttonXML); // ties the JAVA button object to the XML object
buttonJava.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
buttonJava.setBackgroundResource(R.drawable.button_pressed);
sound.start();
return true;
} else if (event.getAction() == MotionEvent.ACTION_UP) {
buttonJava.setBackgroundResource(R.drawable.button_not_pressed);
}
return false;
}
});
}}
这就是我正在尝试做的事情。我试图让它播放声音,直到我松开按钮。我尝试使用 sound.stop()
但它只会工作一次,然后在我重新启动应用程序之前不再工作。有人有什么想法吗?我想尝试让它按照我需要的方式运行,而不是添加太多。如果有人需要进一步说明我需要什么,请告诉我。以下是我的 XML 布局文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
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="com.example.onebuttonpressedimage.MainActivity">
<ImageButton
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="17dp"
android:id="@+id/buttonXML"
android:background="@drawable/blue"
android:layout_centerHorizontal="true"
android:onClick="onButtonClick" />
</RelativeLayout>
这应该可以解决问题 -
MainActivity.java
import android.media.MediaPlayer;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.MotionEvent;
import android.view.View;
import android.widget.ImageButton;
public class MainActivity extends AppCompatActivity {
// declare the objects and variables
private ImageButton buttonJava; // creates the JAVA object that holds button attributes and methods
private MediaPlayer sound = null; // creates the JAVA object that holds the mediaplayer attributes and methods
//private boolean pressed=false;
// Creates the app window ===================================================================================
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
sound = MediaPlayer.create(this, R.raw.beep); // ties the JAVA mediaplayer object to the sound file
sound.setLooping(true);
buttonJava = (ImageButton) findViewById(R.id.buttonXML); // ties the JAVA button object to the XML object
buttonJava.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
buttonJava.setPressed(true);
sound.start();
} else if (event.getAction() == MotionEvent.ACTION_UP) {
buttonJava.setPressed(false);
sound.pause();
}
return true;
}
});
}
}
也使用按钮选择器而不是在 onTouchListener 中设置按钮背景,如下所示 -
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
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="com.mid.test.helpttest.MainActivity">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/button_selector"
android:id="@+id/buttonXML"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"/>
</RelativeLayout>
drawable/button_selector.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/button_not_pressed" android:state_enabled="false" />
<item android:drawable="@drawable/button_pressed" android:state_enabled="true" android:state_pressed="true" />
<item android:drawable="@drawable/button_not_pressed" android:state_enabled="true" android:state_focused="true" />
<item android:drawable="@drawable/button_not_pressed" android:state_enabled="true" />
</selector>
在对 buttonJava java 代码进行了一些修改后,我能够自己完成它,其中包含一些 seekTo、循环和放手时停止以使其更好地工作。