我有onTouchEvent的自定义视图,我在其中设置mX和mY。
mx=event.getX();
my=event.getY();
这是为了获得触摸事件的绘制路径 - 工作得很好,我可以 请参阅主要活动中定义的文本视图中的坐标。
我想在主要活动布局中使用这两个属性 用于设置背景颜色 例如
if (mx > 1000 && my > 100 ){
set color
}
但似乎mx和我没有得到任何值 我试过的是
custom_view paintview = (custom_view) findViewById(R.id.custum_view_id)
float mx =paintview.getmx();
float my =paintview.getmy();
也许我没有在自定义视图中正确定义getmx?
public float getmx(){
return mx;
}
我是Java和Android的新手,所以对我来说很容易:)
添加MainActiviy。
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Drawing - custom view
drawView = (Drawing) findViewById(R.id.drawing);
findCoordinates();
TextView Coordinates = (TextView) findViewById(R.id.CNcoordinates);
//Coordinates - message with coordinates
paintView.setTextView(Coordinates);
}
private Drawing drawView;
public void findCoordinates() {
Drawing paintView = (Drawing) findViewById(R.id.drawing);
float xX = drawView.getmX();
float yY = drawView.getmY();
int nColor = Color.BLUE;
View buttonmove1 = findViewById(R.id.layoutMove);
if (Math.abs(xX) > 1000 && Math.abs(yY) > 1000) {
buttonmove1.setBackgroundColor(nColor);
}
}
坐标来自:
protected void onDraw(Canvas canvas) {
canvas.drawBitmap(canvasBitmap, 0, 0, canvasPaint);
canvas.drawPath(drawPath, drawPaint);
}
@Override
public boolean onTouchEvent(MotionEvent event) {
mX = event.getX();
mY = event.getY();
View buttonmove = findViewById(R.id.drawing);
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
drawPath.moveTo(mX, mY);
if(myCoordinates!=null){
myCoordinates.setText(":" + mX + " , " + ":" + mY);
}
break;
public void setTextView(TextView tv){
myCoordinates = tv;
}
答案 0 :(得分:0)
完成touchEvent后使用界面或回调。你必须重新打电话给你
findCoordinates()
因此它会将您的UI更新为新值。
答案 1 :(得分:0)
我成功使用OnViewTouchListener作为回调:
在自定义视图中添加方法:
private OnViewTouchListener OnViewTouchListener;
public interface OnViewTouchListener {
public void onViewTouched (float x, float y, boolean touched);
}
public void setOnViewTouchListener (OnViewTouchListener listener){
OnViewTouchListener = listener;
}