1

我想在一秒钟内显示大约 30 张照片,所以它们会像视频一样显示。

我在 while(TRUE) 循环中使用 Android ImageView,但 ImageView 没有像我预期的那样改变。

ImageView 每秒改变图片大约 1 次,所以想知道是否有另一种方法

显示我的照片?

照片是使用 Udp 从相机传输的,我首先需要存储在缓冲区中

比显示。

上述部分导致 ImageView 出现延迟。

部分代码是这样的

  public void receiveVideoRawData() throws IOException{
        socket_video = new DatagramSocket();
        byte[] buf_rcv = new byte[153600];
        DatagramPacket rawData = new DatagramPacket(buf_rcv, buf_rcv.length);
        Bitmap  image = null;
        socket_video.receive(rawData);//receive a raw data
        image = readMyRawData.readUINT_RGBImage(buf_rcv);//decode the raw data
        ByteArrayOutputStream blob = new ByteArrayOutputStream();
        Bitmap pBitmap = image ;
        pBitmap.compress(Bitmap.CompressFormat.JPEG, 1, blob);
        byte[] bitmapdata = blob.toByteArray();
        ardrone_Frame = BitmapFactory.decodeByteArray(bitmapdata , 0, bitmapdata.length);
      }

显示部分

  Thread thread=new Thread  (new Runnable() {
     Message message;
    String obj="run";
    int i;
    long start;
    @Override
    public void run() {   
        // TODO Auto-generated method stub
         Log.e("///enter thread ","THREAD");
    while(true){     
        try { 
            Log.e("enter_video_thread","enter_video_thread");
            receiveVideoRawData();
            Log.e("///receiveVideoRawData ","receiveVideoRawData");
            message = handler.obtainMessage(1,obj);
                    handler.sendMessage(message);
            }

        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }   
    }
}

});
public Handler handler = new Handler(){ 
    @Override
    public void handleMessage(Message msg) {
            super.handleMessage(msg);
            String MsgString = (String)msg.obj;
            if (MsgString.equals("run"))
            {         Log.e("///enter handler ","HANDLER");                                           
                          Toast.makeText(ArDroneMain.this,"save image ",Toast.LENGTH_SHORT).show();
                          //Bitmap bitmap = BitmapFactory.decodeFile(Environment.getExternalStorageDirectory()+ "/ArdroneVideo.jpg");
                          myImageView.setImageBitmap(ardrone_Frame);    ///Show the image    
                          Toast.makeText(ArDroneMain.this,"show image",Toast.LENGTH_SHORT).show();
             }

    }
};
4

2 回答 2

4

你可以把它做成动画。为您的动画制作图像并保存在 png 格式的文件夹中。使用下面的代码为这些图像设置动画

<animation-list xmlns:android="http://schemas.android.com/apk/res/android" android:oneshot="true">
 <item android:drawable="@drawable/rocket_thrust1" android:duration="200" />
 <item android:drawable="@drawable/rocket_thrust2" android:duration="200" />
 <item android:drawable="@drawable/rocket_thrust3" android:duration="200" />
 </animation-list>

然后

AnimationDrawable rocketAnimation;

public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);

  ImageView rocketImage = (ImageView) findViewById(R.id.rocket_image);
  rocketImage.setBackgroundResource(R.drawable.rocket_thrust);
  rocketAnimation = (AnimationDrawable) rocketImage.getBackground();
}

public boolean onTouchEvent(MotionEvent event) {
  if (event.getAction() == MotionEvent.ACTION_DOWN) {
    rocketAnimation.start();
    return true;
  }
  return super.onTouchEvent(event);
}
于 2013-03-25T09:47:03.927 回答
0

您始终可以使用 ffmpeg 创建图像的视频,也可以使用 timertask

delay=1000/totalImages;

myTimer = new Timer();
        myTimer.schedule(new TimerTask() {          
            @Override
            public void run() {

                            if(count==imgArr.length)
                              cancel();

                            imageView.setImageResource(imgArr[count]);
                            count++;    

            }

        }, 0, delay);
于 2013-03-25T09:40:29.517 回答