当我有TextView示例时:
TextView tx = (TextView) findViewById(R.id.idOfTextView);
tx.setId( Integer.parseInt(touched) );
tx.setX(X);
tx.setY(Y);
tx.setPadding(12, 12, 12, 12);
tx.setTextSize(25);
tx.setTextColor(Color.parseColor("#EF7620"));
tx.setShadowLayer(16.5f, 0, 0, Color.parseColor("#EF7620"));
tx.setOnTouchListener(new ChoiceTouchListener());
我在这个tx TextView中做了一些事件和操作,但这并不重要。我想要做的只是,当其他事件结束时我想滚动或移动这个TextView。
例如:
我找到的唯一解决方案是scrollTo,但对我没有用
tx.scrollTo(100, 100);