我是否可以使用toast message
显示错误消息的任何其他方式。请帮我?
我也不想显示弹出窗口..
答案 0 :(得分:2)
使用动画,点击edittext(如果它为空)
Animation shake = AnimationUtils.loadAnimation(LoginActivity.this,
R.anim.shake);
editTextId.startAnimation(shake);
在res中创建文件夹动画
添加文件shake.xml
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="500"
android:fromXDelta="0"
android:interpolator="@anim/cycle_7"
android:toXDelta="10" />
file cycle_7.xml
<cycleInterpolator xmlns:android="http://schemas.android.com/apk/res/android"
android:cycles="7" />
答案 1 :(得分:0)
使用setError()
方法,您可以像edittext.setError("ur message",icon);