我正在MotionEvent上旋转图像。当我旋转图像时,图像也会缩小。我想在移动事件不多时显示警报对话框。
我在这里发布我的代码...
私有ProgressBar distanceBar;
私人纽扣;
私有ImageView setAccuracy;
float currentDegrees = 0;
浮动电流距离;
float totalDistance = 1000;
float totalDegree = 360;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.errandboy_destination);
back = (Button) findViewById(R.id.back);
distanceBar = (ProgressBar) findViewById(R.id.errand_progress);
distanceBar.setMax(1000);
setAccuracy = (ImageView) findViewById(R.id.errandAnim);
OnTouchListener backListener = new OnTouchListener() {
public boolean onTouch (View v, MotionEvent event) {
if (event.getAction()==MotionEvent.ACTION_UP){
finish();
}
return false;
}
};
back.setOnTouchListener(backListener);
setAccuracy.setOnTouchListener(onTableTouched);
}
public android.view.View.OnTouchListener onTableTouched = new android.view.View.OnTouchListener() {
public boolean onTouch(View v, MotionEvent event) {
switch (event.getAction()) {
case MotionEvent.ACTION_MOVE:
if (currentDegrees > 360) {
currentDegrees = 0;
}
currentDegrees = currentDegrees + 1;
updateRotation(currentDegrees);
System.out.println("Current Degree is:--->" + currentDegrees);
currentDistance = (currentDegrees * totalDistance)
/ totalDegree;
System.out
.println("Current Distance is:--->" + currentDistance);
int progress = (int) currentDistance;
distanceBar.setProgress(progress);
break;
case MotionEvent.ACTION_CANCEL:
AlertDialog.Builder choice = new Builder(getParent());
choice.setTitle("Error");
choice.setMessage("message");
choice.setPositiveButton("Ok",
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
return;
}
});
choice.create().show();
break;
}
return true;
}
};
private void updateRotation(double rot) {
float newRot = new Float(rot);
Bitmap bitmapOrg = BitmapFactory.decodeResource(getResources(),R.drawable.anim1);
int width = bitmapOrg.getWidth();
int height = bitmapOrg.getHeight();
int newWidth = 200;
int newHeight = 200;
float scaleWidth = ((float) newWidth) / width;
float scaleHeight = ((float) newHeight) / height;
int centerX = width/2;
int centerY = height/2;
Matrix matrix = new Matrix();
matrix.postScale(scaleWidth, scaleHeight);
matrix.postRotate(newRot);
matrix.postTranslate(centerX, centerY);
matrix.preTranslate(-centerX, -centerY);
Bitmap resizedBitmap = Bitmap.createBitmap(bitmapOrg, 0, 0, width, height, matrix, true);
BitmapDrawable bmd = new BitmapDrawable(resizedBitmap);
setAccuracy.setImageDrawable(bmd);
}
}
我该如何克服这个问题?
谢谢...
最佳答案
在您的情况下,请使用MotionEvent.ACTION_UP代替MotionEvent.ACTION_CANCEL。
case MotionEvent.ACTION_UP:
AlertDialog.Builder choice = new Builder(getParent());
choice.setTitle("Error");
choice.setMessage("message");
choice.setPositiveButton("Ok",
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
return;
}
});
choice.create().show();
break;
关于android - 当ANDROID中的运动事件不再存在时,如何获取Action?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6936742/