获取 ActionEvent 的坐标
Get coordinates of ActionEvent
我遇到了一个小问题。
在下面的示例中,第一个 TextView 必须显示 MotionEvent 的类型 - 它工作正常。第二个 TextView 必须显示 MotionEvent 的坐标 - 但它不起作用。我不知道为什么,但也许它只是一个小错误?
有人有想法吗?
谢谢你的帮助!
这是代码:
package de.androidnewcomer.motionevent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.MotionEvent;
import android.view.View;
import android.widget.FrameLayout;
import android.widget.TextView;
import static android.R.attr.x;
import static android.R.attr.y;
public class MainActivity extends AppCompatActivity implements View.OnTouchListener {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
FrameLayout Spielbereich=(FrameLayout)findViewById(R.id.Spielbereich);
Spielbereich.setOnTouchListener(this);
}
@Override
public boolean onTouch(View v, MotionEvent event) {
TextView textView1=(TextView)findViewById(R.id.textView1);
TextView textView2=(TextView)findViewById(R.id.textView2);
TextView textView3=(TextView)findViewById(R.id.textView3);
TextView textView4=(TextView)findViewById(R.id.textView4);
int x1,x2,y1,y2;
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN: {
x1 = (int)event.getX();
y1 = (int)event.getY();
textView1.setText("Action Down");
textView2.setText(x1,y1);
return true;
}
case MotionEvent.ACTION_UP: {
x2 = (int)event.getX();
y2 = (int)event.getY();
textView3.setText("Action Up");
textView4.setText(x2,y2);
return true;
}
} return false;
}
}
我认为你使用 setText(...)
是错误的。在 docs 你可以看到 TextView
有以下 setText
方法:
final void setText(int resid)
使用字符串资源标识符设置要显示的文本。
final void setText(CharSequence text)
设置要显示的文本。
void setText(CharSequence text, TextView.BufferType type)
设置要显示的文本和 TextView.BufferType.
final void setText(int resid, TextView.BufferType type)
使用字符串资源标识符和 TextView.BufferType. 设置要显示的文本
final void setText(char[] text, int start, int len)
设置 TextView 以显示指定字符数组的指定切片。
您正在尝试使用不受支持的 setText(int,int)
。
你应该做类似 textView2.setText(x1+" "+y1);
的事情
我遇到了一个小问题。 在下面的示例中,第一个 TextView 必须显示 MotionEvent 的类型 - 它工作正常。第二个 TextView 必须显示 MotionEvent 的坐标 - 但它不起作用。我不知道为什么,但也许它只是一个小错误? 有人有想法吗? 谢谢你的帮助! 这是代码:
package de.androidnewcomer.motionevent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.MotionEvent;
import android.view.View;
import android.widget.FrameLayout;
import android.widget.TextView;
import static android.R.attr.x;
import static android.R.attr.y;
public class MainActivity extends AppCompatActivity implements View.OnTouchListener {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
FrameLayout Spielbereich=(FrameLayout)findViewById(R.id.Spielbereich);
Spielbereich.setOnTouchListener(this);
}
@Override
public boolean onTouch(View v, MotionEvent event) {
TextView textView1=(TextView)findViewById(R.id.textView1);
TextView textView2=(TextView)findViewById(R.id.textView2);
TextView textView3=(TextView)findViewById(R.id.textView3);
TextView textView4=(TextView)findViewById(R.id.textView4);
int x1,x2,y1,y2;
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN: {
x1 = (int)event.getX();
y1 = (int)event.getY();
textView1.setText("Action Down");
textView2.setText(x1,y1);
return true;
}
case MotionEvent.ACTION_UP: {
x2 = (int)event.getX();
y2 = (int)event.getY();
textView3.setText("Action Up");
textView4.setText(x2,y2);
return true;
}
} return false;
}
}
我认为你使用 setText(...)
是错误的。在 docs 你可以看到 TextView
有以下 setText
方法:
final void setText(int resid)
使用字符串资源标识符设置要显示的文本。final void setText(CharSequence text)
设置要显示的文本。void setText(CharSequence text, TextView.BufferType type)
设置要显示的文本和 TextView.BufferType.final void setText(int resid, TextView.BufferType type)
使用字符串资源标识符和 TextView.BufferType. 设置要显示的文本
final void setText(char[] text, int start, int len)
设置 TextView 以显示指定字符数组的指定切片。
您正在尝试使用不受支持的 setText(int,int)
。
你应该做类似 textView2.setText(x1+" "+y1);