-2

私は問題があります。ボタンの状態に応じてボタンの外観を変更する方法がわかりません。 

xml の標準的な外観は機能せず、デフォルトも機能しません。

{
    button1 = (Button) findViewById(R.id.button5);

    button1.setOnTouchListener(new OnTouchListener() {

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

                switch (event.getAction()) 
                {
                    case MotionEvent.ACTION_DOWN:
                        mp[0] = loadSample(1);
                        mp[0].start(); 
                        break;
                    case MotionEvent.ACTION_UP:
                        mp[0].stop(); 
                        //mp.reset();
                        mp[0].release(); 
                        break;  
                }
        return true;
        }
    });
}
4

2 に答える 2