在按钮单击事件中,我设置了图像按钮的 x 和 y 值,单击另一个按钮后,我想通过添加它们的值来再次更改其坐标,例如x = x + 10
但layoutParams.y
在几秒钟前返回 0 ;
AbsoluteLayout.LayoutParams lp = new AbsoluteLayout.LayoutParams(hand.getLayoutParams());
Log.d("mangala",String.format("b pos %d", lp.y ));
lp.y = lp.y - g.convertDPtoPX(30f);
Log.d("mangala",String.format("a pos %d", lp.y ));
hand.setLayoutParams(lp);
谢谢。