1
我需要將按鈕從一個位置移動到另一個位置。查看位置移動工作正常,但只有舊區域可點擊。Android - 使用ObjectAnimator移動按鈕不起作用
這是我的代碼:
Button animatorButton = (Button)findViewById(R.id.animatorbutton);
ObjectAnimator objectAnimatorButton = ObjectAnimator.ofFloat(animatorButton, "translationX", 0f, 400f);
objectAnimatorButton.setDuration(1000);
objectAnimatorButton.start();
我怎麼能移動的按鈕禁用舊的點擊區域?