1

当我有 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);
4

0 回答 0