我已经对按钮的edittext进行了验证,如果它是空的,将显示一个吐司,说特定的字段是空的,此外还希望edittext让它从左到右移动,反之亦然作为动画形式,这将有助于使应用程序有吸引力是有可能吗??如果是这样,请帮助我提前谢谢
问问题
2391 次
1 回答
8
创建以下内容并将其写入 anim/shake.xml:
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromXDelta="0" android:toXDelta="10" android:duration="1000"
android:interpolator="@anim/cycle_7" />
创建以下内容并将其写入 anim/cycle_7.xml:
<cycleInterpolator xmlns:android="http://schemas.android.com/apk/res/android" android:cycles="7" />
现在使用 Animation 类通过传入参数为任何视图设置动画。通过传递任何视图调用此方法
public void onShake(View v, String your_msg) {
Animation shake = AnimationUtils.loadAnimation(this, R.anim.shake);
findViewById(R.id.pw).startAnimation(shake);
Toast.makeText(this, your_msg, Toast.LENGTH_SHORT).show();
}
于 2013-04-15T10:41:56.730 回答