正文

擴展定制的Camera應(yīng)用程序(6)

Android多媒體開發(fā)高級編程 作者:(美)艾佛瑞


public void onPictureTaken(byte[] data, Camera camera) {

       Uri imageFileUri = 

       getContentResolver().insert(Media.EXTERNAL_CONTENT_URI, 

new ContentValues());

       try {

             OutputStream imageFileOS = 

                  getContentResolver().openOutputStream(imageFileUri);

             imageFileOS.write(data);

             imageFileOS.flush();

             imageFileOS.close();

             Toast t = Toast.makeText(this,"Saved JPEG!", Toast.LENGTH_SHORT);

             t.show();

       } catch (FileNotFoundException e) {

             Toast t = Toast.makeText(this,e.getMessage(), Toast.LENGTH_SHORT);

             t.show();

       } catch (IOException e) {

         Toast t = Toast.makeText(this,e.getMessage(), Toast.LENGTH_SHORT);

             t.show();

       } 

         camera.startPreview();

    } 

}

然而,布局XML稍微有點不同。這個應(yīng)用程序在一個包含LinearLayout的FrameLayout中顯示攝像頭預(yù)覽SurfaceView,其中包含TextView來顯示倒計時,并且包含Button來觸發(fā)倒計時。該FrameLayout中的所有對象均左上角對齊,并且依次堆疊。采用這種方式,TextView和Button均顯示在攝像頭預(yù)覽的頂部。


上一章目錄下一章

Copyright ? 讀書網(wǎng) ranfinancial.com 2005-2020, All Rights Reserved.
鄂ICP備15019699號 鄂公網(wǎng)安備 42010302001612號