|
|
@@ -329,29 +329,19 @@ public class add_silos_ck_edit extends LinearLayout { |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
control_switch_shoudong.setOnTouchListener(new OnTouchListener() { |
|
|
|
@Override |
|
|
|
public boolean onTouch(View view, MotionEvent motionEvent) { |
|
|
|
String name = lcMode.name + lcMode.num+"启停控制"; |
|
|
|
if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) { |
|
|
|
Log.e("鼠标", "按下: "); |
|
|
|
ExecuteTheRecipe.WritePLC("清洗模式", true, new IWriteCallBack() { |
|
|
|
@Override |
|
|
|
public void onSuccess() { |
|
|
|
ExecuteTheRecipe.WritePLC(name, true, null); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public void onFailure(String ErrorMsg) { |
|
|
|
} |
|
|
|
}); |
|
|
|
} else if (motionEvent.getAction() == MotionEvent.ACTION_UP) { |
|
|
|
Log.e("鼠标", "松开: "); |
|
|
|
ExecuteTheRecipe.WritePLC("清洗模式", false, null); |
|
|
|
ExecuteTheRecipe.WritePLC(name, false, null); |
|
|
|
} |
|
|
|
return false; |
|
|
|
control_switch_shoudong.setOnTouchListener((view,motionEvent)->{ |
|
|
|
String name = lcMode.name + lcMode.num+"启停控制"; |
|
|
|
if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) { |
|
|
|
Log.e("鼠标", "按下: "); |
|
|
|
ExecuteTheRecipe.WritePLC("清洗模式", true,null); |
|
|
|
ExecuteTheRecipe.WritePLC(name, true, null); |
|
|
|
} else if (motionEvent.getAction() == MotionEvent.ACTION_UP) { |
|
|
|
Log.e("鼠标", "松开: "); |
|
|
|
ExecuteTheRecipe.WritePLC("清洗模式", false,null); |
|
|
|
ExecuteTheRecipe.WritePLC(name, false, null); |
|
|
|
} |
|
|
|
return false; |
|
|
|
}); |
|
|
|
|
|
|
|
// control_switch_shoudong.setOnTouchListener(new OnTouchListener() { |
|
|
|