轻按后按钮(图像)不变

时间:2018-09-09 18:08:05

标签: java android button

我有一个非常基本的应用程序,带有一个按钮,该按钮可在轻按时处理声音播放。它会一直播放直到按下/轻击按钮,并且一旦您轻按或取消触摸它,声音就会停止。您点击(按住)声音会继续播放,一旦未触摸按钮,声音就会停止。现在我有一个按钮图像,只要它被触摸(音乐播放)就应该改变,而当未被触摸(音乐停止)时又回到默认状态。当我使用onClickListener时,此工具工作正常,但是一旦将其更改为onTouchListener,则按钮图像在点击时就不会改变。这是MainActivity.java代码:

package com.example.firozkaoo2222.myapplication;

import android.media.MediaPlayer;
import android.os.Vibrator;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
import android.widget.Button;

import static com.example.firozkaoo2222.myapplication.R.raw.police;

public class MainActivity extends AppCompatActivity {


private MediaPlayer policeSound;
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Button policeSounds = findViewById(R.id.police);

    policeSounds.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {

            if (policeSound == null) {
                policeSound = MediaPlayer.create(getApplicationContext(), R.raw.police);
            }

            int eventPadTouch = event.getAction();

            switch (eventPadTouch) {

                case MotionEvent.ACTION_DOWN:
                    // start playing sound , in your case:
                    policeSound.start();
                    return true;


                case MotionEvent.ACTION_UP:
                    // stop playing sound , in your case:
                    policeSound.pause();
                    return true;

            }
            return false;
        }
    });}}

activity_main.xml的代码:

<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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:gravity="center"
android:orientation="vertical">


<Button
    android:id="@+id/police"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:background="@drawable/custom_button" />
</RelativeLayout>

cutom_button.xml的代码:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
    android:state_pressed="true"
    android:drawable="@drawable/button_pressed" />

<item
    android:drawable="@drawable/button_default" />
</selector>

1 个答案:

答案 0 :(得分:2)

触摸侦听器会消耗点击侦听器,它将永远不会到达选择器。由于您使用的是pressed state,因此您可以模仿使用policeSounds.setPressed(boolean)按下的状态,以便对其进行更改

switch (eventPadTouch) {

    case MotionEvent.ACTION_DOWN:
        // start playing sound , in your case:
        policeSound.start();
        policeSounds.setPressed(true)
        return true;


    case MotionEvent.ACTION_UP:
        // stop playing sound , in your case:
        policeSound.pause();
        policeSounds.setPressed(false)
        return true;

}

注意:为了说服,您可以在policeSounds外部声明oncreate,而不用将final用作局部变量