我从之前的2天开始,如果我们通过TextView.setText()
将文本设置到最初的任何指定位置,然后使用我的手指触摸我想要如何将文本从一个位置移动到视图中的另一个位置改变视图中文本的位置意味着拖放或文本移动我的手指动作并停止或设置我从屏幕上放下手指的位置..任何人都对此有任何想法,...我将非常感谢对你们所有人......
TextView textView = (TextView)findViewById(R.id.textView);
// this is the view on which you will listen for touch events
View touchView = findViewById(R.id.touchView);
touchView.setOnTouchListener(new View.OnTouchListener() {
public boolean onTouch(View v, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
}}
}
答案 0 :(得分:1)
答案 1 :(得分:1)
使用绝对布局作为textView的父级,设置textview的位置,但是如果折旧,您还可以使用RelativeLayout并动态设置它的边距,这样您就可以在布局中的任何位置动态设置视图定位。