2

onLongClick ボタン イベントを使用して早送りボタンを実装することは可能ですか?

編集

私はonlongclicklistner内でrunnableを使用し、必要な参照用のコードを追加しました:)

   Button.setOnLongClickListener(new OnLongClickListener() {

        @Override
        public boolean onLongClick(View v) {


            final Runnable r = new Runnable()
            {
                public void run() 
                {//do the forwarding logic here


                     if(Button.isPressed()){

                            Button.postDelayed(this, 1000); //delayed for 1 sec
                        }else{

                        Button.postInvalidate();
                        Button.invalidate();
                        }
                }
            };

            Button.post(r);

            return true;
            }
    });
4

2 に答える 2

2
  1. onLongClickイベントで、メンバー変数 (例: mShouldFastForward) を に設定しますtrue

  2. コードの残りの部分 (おそらく各フレームが再生された?​​) で、次のことを確認してくださいmShouldFastForward == true。その場合、そのフレームで早送りを実行します。

  3. イベントを使用して、を に設定しonTouchてキャプチャします。MotionEvent.ACTION_UPmShouldFastForwardfalse

于 2012-06-07T06:21:00.203 に答える
0

私はこのプロジェクトでそれを行いました(プロジェクトは終了していません(つまり、洗練されていません)が、早送りします):

https://bitbucket.org/owentech/epileptic-gibbon-android

playerfragment.javaを見てください:

私はスレッドを使用してメディアプレーヤーを早送りすることでこれを処理します。

プロジェクトのサンプルコード:

/*******************************/
/* Fast-Forward button actions */
/*******************************/

ffbutton.setOnTouchListener(new View.OnTouchListener() {

@Override
public boolean onTouch(View arg0, MotionEvent event) {

   switch (event.getAction() ) { 

       case MotionEvent.ACTION_DOWN: 

           arrays.fastforwardpressed = true;
           FastForwardThread newFFThread = new FastForwardThread();
           arrays.fastforwardfrom = mp.getCurrentPosition();
           arrays.fastforwardto = arrays.fastforwardfrom;

           newFFThread.start();
           break;

       case MotionEvent.ACTION_UP:

           arrays.fastforwardpressed = false;
           mp.seekTo(arrays.fastforwardto);
           break; 

    }

    return true;
  }
});


public class FastForwardThread extends Thread
{
    public FastForwardThread()
    {
        super("FastForwardThread");
    }

    public void run()
    {
        while (arrays.fastforwardpressed == true)
        {

            arrays.fastforwardto = arrays.fastforwardto + 10000;
            int fastforwardseconds = arrays.fastforwardto / 1000;
            int hours = fastforwardseconds / 3600, remainder = fastforwardseconds % 3600, minutes = remainder / 60, seconds = remainder % 60;

            String Hours = Integer.toString(hours);
            String Minutes = Integer.toString(minutes);
            String Seconds = Integer.toString(seconds);

            if (Hours.length() == 1)
            {
                Hours = "0" + Hours;
            }

            if (Minutes.length() == 1)
            {
                Minutes = "0" + Minutes;
            }

            if (Seconds.length() == 1)
            {
                Seconds = "0" + Seconds;
            }

            arrays.formattedfftime = Hours + ":" + Minutes + ":" + Seconds;

            fastforwardHandler.sendEmptyMessage(0);

            try
            {
                sleep(100);
            } catch (InterruptedException e)
            {
                e.printStackTrace();
            }
        }
    }
    }
于 2012-06-07T06:23:16.303 に答える