0
您好我想通過動畫將edittext視圖的長度減少到3/4。幫助我和下面是我的代碼動畫。但它沒有發生移動。我想從右向左移動它。提前我想減少編輯文本的長度
下面請幫助我的感謝是我的代碼
private void animate() {
initialLength = etSearchText.getWidth();
currentLength = initialLength - ibtnSearch.getWidth();
ScaleAnimation anim = new ScaleAnimation(initialLength, currentLength,0, 0);
anim.setInterpolator(new LinearInterpolator());
anim.setDuration(3000);
etSearchText.startAnimation(anim);
initialLength = currentLength;
}