我使用以下代码对按钮进行了充气,并且想要使用简单TranslateAnimation
交换所选2个按钮的位置。
for (int k = 1; k <= quotient; k++)
{
LinearLayout.LayoutParams params3 = new LinearLayout.LayoutParams(button_width,row_height);
params3.setMargins(button_margin, button_margin, button_margin, button_margin);
btn_right = new Button(this);
btn_right.setId(idd);
final int id_ = btn_right.getId();
btn_right.setText(""+question[idd]);
frame_row.addView(btn_right, params3);
btn_right.setOnClickListener(new View.OnClickListener()
{
public void onClick(View view)
{
btn_right = ((Button) findViewById(id_));
X1 = getRelativeLeft(btn_right);
Y1 = getRelativeTop(btn_right);
int b = Integer.parseInt(""+btn_right.getText().toString());
selection ++;
if (selection%2 ==1)
{
selected_id1 = id_;
selected_color1 = b;
custom_toast("X1=" +X1 + "\nY1=" + Y1);
}
else
{
selected_id2 = id_;
selected_color2 = b;
X2 = getRelativeLeft(btn_right);
Y2 = getRelativeTop(btn_right);
custom_toast("X2=" +X2 + "\nY2=" + Y2);
// the first one
btn_right = ((Button) findViewById(selected_id1));
anim1=new TranslateAnimation(0, (X2-X1), 0, (Y2-Y1));
anim1.setFillAfter(true);
anim1.setDuration(animationTime);
anim1.setAnimationListener(Game.this);
btn_right.startAnimation(anim1);
// the second one
btn_right = ((Button) findViewById(selected_id2));
anim2=new TranslateAnimation(0, (X1-X2), 0, (Y1-Y2));
anim2.setFillAfter(true);
anim2.setDuration(animationTime);
anim2.setAnimationListener(Game.this);
btn_right.startAnimation(anim2);
}
@Override
public void onAnimationEnd(Animation animation)
{
if (animation == anim1)
{
custom_toast("1 clear");
btn_right = ((Button) findViewById(selected_id1));
btn_right.clearAnimation(); // Line 426
}
if (animation == anim2)
{
custom_toast("2 clear");
btn_right = ((Button) findViewById(selected_id2));
btn_right.clearAnimation();
}
}
04-21 21:28:00.728: E/AndroidRuntime(11341): java.lang.NullPointerException
04-21 21:28:00.728: E/AndroidRuntime(11341): at com.abc.abc.Game.onAnimationEnd(Game.java:426)
有关信息,如果选择%2 == 1,则表示用户只按了第一个按钮并且尚未准备好进行交换,因此记录了id及其X,Y坐标。如果选择%2 == 0,则意味着用户按下了2个按钮,并且在记录第二个X和Y后准备交换。
此外,(X1,Y1)和(X2,Y2)坐标正确报告。
它在第426行({1}}(如上所述)进入NPE。我的问题是,因为所有的按钮都是膨胀的,而且我已经为所有膨胀的按钮设置了ID,为什么它仍然会在第426行作为NPE运行,或者实际上我应该如何指定用户触摸的2个按钮呢为了实现交换动画?
谢谢!
答案 0 :(得分:0)
创建一个按钮列表,您可以创建按钮并设置它们的id,标签和onclicklistenners,并将它们添加到按钮列表中:
buttonList = new ArrayList<Button>();
for (int i=0;i<2;i++){
Button button = new Button(getApplicationContext());
button.setOnClickListener(customListenner);
button.setAnimation(anim);
button.setId(i);
button.setTag(i);
myLayout.addView(button);
buttonList.add(button);
}
当您需要再次使用该按钮时,只需使用列表中的ID或标签进行呼叫即可。 (buttonList.get(0).getId()
)
如果您需要不同的听众,您可以使用功能中的唯一标签检查来控制它们,并声明另一个操作。
当我需要以编程方式在动态视图上创建和使用动画时,这是我经常使用的方法。