1

アンドロイドが初めてです。マウスモーションの使用に小さな問題があり、処理方法がわかりません。マウスを上下にスクロールしてボタンの値を変更するとき特定の値に達したときにマウスの動きを停止するか、値を変更しません。私を提案し、感謝を進めてください...

マイ アクティビティ

public class MainActivity extends Activity {
Button  btn;
int x,f;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    btn=(Button)findViewById(R.id.btn);          
    btn.setOnGenericMotionListener(new OnGenericMotionListener() {
        @Override
        public boolean onGenericMotion(View v, MotionEvent event) {         
            switch (event.getAction()) {                        
            case MotionEvent.ACTION_SCROLL:
                if (event.getAxisValue(MotionEvent.AXIS_VSCROLL) > 0.0f)
                {
                    x=Integer.parseInt(btn.getText().toString());
                    f=x+5;
                    btn.setText(""+f);
                    if(x==10)// this condition mouse scroll but not change btn value.
                    {
                        btn.settext("10");
                    }
                }
                else
                {
                    x=Integer.parseInt(btn.getText().toString());
                    f=x-5;
                    btn.setText(""+f);  
                }
            }
            return false;
        }           
    });
}}
4

1 に答える 1