0

我的活动中有一个按钮,并使用 TranslateAnimation 更改其位置。

我正在使用 anim.setFillAfter(true); 为了保持最终的翻译,按钮会移动其位置,但触摸区域保持不变。
现在,当我触摸按钮时,它不起作用,而是触摸按钮的先前位置调用其侦听器..

这是我的代码:
MainActivity.java

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        Animation anim=new TranslateAnimation(0, 100, 0, 0);
        anim.setDuration(500);
        anim.setFillAfter(true);
        Button mybtn = (Button)findViewById(R.id.btn);
        mybtn.startAnimation(anim);
    }

    public void myFunc(View v){
        Toast.makeText(this, "btn clicked", Toast.LENGTH_SHORT).show();
    }
}

activity_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:tools="http://schemas.android.com/tools"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            tools:context=".MainActivity" >

            <Button
                android:id="@+id/btn"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:layout_centerVertical="true"
                android:text="@string/hello_world" 
                android:onClick="myFunc"/>

        </RelativeLayout>
4

2 回答 2

1

我在这个页面 vogella找到了我的查询的答案 ,这里android 已经解释过了,按钮需要属性动画而不仅仅是视图动画:

这是我使用的代码:

Button mybtn = (Button)findViewById(R.id.btn);
mybtn.animate().translationX(400).setDuration(500);

感谢您的帮助...如果其他人需要帮助,我将离开此职位。

于 2013-02-06T10:54:15.793 回答
0

I have re-generated your case and it seems like only 50% of the button shows the selected color. Is that right ? Try this :

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Button sampleButton = (Button)findViewById(R.id.btn);
    sampleButton.animate().translationX(somevalue).setDuration(someduration);
}
于 2013-02-05T19:15:26.497 回答