Мне нужно реализовать анимацию "панели сканирования", создав анимацию перевода (немного похоже на приложение goggles google). Это гистограмма (пользовательский вид), которая пересекает мой вид поверхности слева направо.
Я сделал то, что близко к моим ожиданиям, за исключением того, что анимация запаздывает: (
Это часть моего XML:
<LinearLayout
android:id="@+id/layoutCamera"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="8" >
<SurfaceView
android:id="@+id/surfaceView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="top" />
</LinearLayout>
Это мой пользовательский вид:
class ScannerView extends View
{
private Bitmap scanBar;
private int sizeBarW;
private int sizeBarH;
public ScannerView(Context context, int heightParent)
{
super(context);
//init size
sizeBarW = 5;
//I adjust the height of the bar to my surfaceview
sizeBarH = heightParent;
//prepare bitmap
scanBar = prepareBitmap(getResources().getDrawable(R.drawable.scan_bar), sizeBarW,
sizeBarH);
}
private static Bitmap prepareBitmap(Drawable drawable, int width, int height)
{
Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
drawable.setBounds(0, 0, width, height);
Canvas canvas = new Canvas(bitmap);
drawable.draw(canvas);
return bitmap;
}
@Override
protected void onDraw(Canvas canvas)
{
canvas.drawBitmap(scanBar, 0, 0, null);
}
}
И это моя анимационная функция (вызывается для surfaceChanged () из моего класса активности):
private void LaunchAnimation()
{
// 1 - view
mScanBar = new ScannerView(this, surfaceView.getHeight());
addContentView(mScanBar, new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
// 2 - Animation
Animation animTranslation = new TranslateAnimation(Animation.RELATIVE_TO_PARENT, -1.0f, Animation.RELATIVE_TO_PARENT, 1.0f,
Animation.RELATIVE_TO_PARENT, 0.0f, Animation.RELATIVE_TO_PARENT, 0.0f);
animTranslation.setDuration(5000);
animTranslation.setRepeatCount(Animation.INFINITE);
mScanBar.startAnimation(animTranslation);
}
Я новичок в программировании Android, и я не уверен, что делаю это наилучшим образом ...:?
Спасибо, что помогли мне решить эту проблему с запаздыванием / замедлением. :)