Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> Android開發實例:屏幕截圖及郵件發送功能的實現

Android開發實例:屏幕截圖及郵件發送功能的實現

編輯:Android開發實例

       做掌上BT軟件或者移動辦公軟件 ,一般都會有這樣一個功能,用戶可以對屏幕當前顯示的數據或報表進行截圖,並通過郵件發送。本文的開發實例就是要實現此功能。

       其中有一個開發時候的小技巧:

       用email.setType("image/png");或者email.setType("application/octet-stream"); 都不會影響郵件的發送。為什麼email.setType("image/png");而不用email.setType("application/octet-stream"); ? 因為在開發中發現setType("image/png"),系統會同時給你調用彩信,郵件,等.....

       下面將實現方法跟大家分享一下:

Java代碼
  1. package com.johnson.Screenshot;    
  2.   
  3. import java.io.File;    
  4. import java.io.FileNotFoundException;    
  5. import java.io.FileOutputStream;    
  6. import java.io.IOException;    
  7. import android.app.Activity;    
  8. import android.content.Context;    
  9. import android.content.Intent;    
  10. import android.graphics.Bitmap;    
  11. import android.graphics.Rect;    
  12. import android.net.Uri;    
  13. import android.os.Environment;    
  14. import android.os.StatFs;    
  15. import android.view.View;    
  16. import android.widget.Toast;    
  17.   
  18. public class ScreenshotTools {    
  19.   
  20.   /***   
  21.     * @author Johnson   
  22.     *      
  23.     * */    
  24.   
  25.   public static long minSizeSDcard = 50;    
  26.   public static String filePath = Environment.getExternalStorageDirectory()    
  27.       + "/FJBICache";    
  28.   public static String fileName = "chart.png";    
  29.   public static String detailPath = filePath + File.separator + fileName;    
  30.   public static final int SEND_EMAIL = 1;    
  31.   
  32.   // public static String detailPath="/sdcard/FjbiCache/chart.png";    
  33.   
  34.   /**   
  35.     * 調用系統程序發送郵件   
  36.     *      
  37.     * @author Johnson   
  38.     *      
  39.     * */    
  40.   
  41.   private static void sendEmail(Context context, String[] to, String subject,    
  42.       String body, String path) {    
  43.   
  44.     Intent email = new Intent(android.content.Intent.ACTION_SEND);    
  45.   
  46.     if (to != null) {    
  47.       email.putExtra(android.content.Intent.EXTRA_EMAIL, to);    
  48.     }    
  49.     if (subject != null) {    
  50.       email.putExtra(android.content.Intent.EXTRA_SUBJECT, subject);    
  51.     }    
  52.     if (body != null) {    
  53.       email.putExtra(android.content.Intent.EXTRA_TEXT, body);    
  54.     }    
  55.     if (path != null) {    
  56.   
  57.       /*   
  58.         * 用email.setType("image/png");或者email.setType(   
  59.         * "application/octet-stream"); 都不會影響郵件的發送   
  60.         * 為什麼email.setType("image/png"   
  61.         * );而不用email.setType("application/octet-stream"); ?   
  62.         * 因為在開發中發現setType("image/png"),系統會同時給你調用彩信,郵件,等.....   
  63.         */    
  64.   
  65.       File file = new File(path);    
  66.       email.putExtra(android.content.Intent.EXTRA_STREAM,    
  67.           Uri.fromFile(file));    
  68.       email.setType("image/png");    
  69.     }    
  70.     context.startActivity(Intent.createChooser(email, "請選擇發送軟件"));    
  71.   
  72.   }    
  73.   
  74.   /**   
  75.     * 獲取指定Activity的截屏,保存到png文件   
  76.     *      
  77.     * @author Johnson   
  78.     * **/    
  79.   
  80.   private static Bitmap takeScreenShot(Activity activity) {    
  81.     // View是你需要截圖的View    
  82.     View view = activity.getWindow().getDecorView();    
  83.     view.setDrawingCacheEnabled(true);    
  84.     view.buildDrawingCache();    
  85.     Bitmap b1 = view.getDrawingCache();    
  86.   
  87.     // 獲取狀態欄高度    
  88.     Rect frame = new Rect();    
  89.     activity.getWindow().getDecorView().getWindowVisibleDisplayFrame(frame);    
  90.     int statusBarHeight = frame.top;    
  91.     System.out.println(statusBarHeight);    
  92.   
  93.     // 獲取屏幕長和高    
  94.     int width = activity.getWindowManager().getDefaultDisplay().getWidth();    
  95.     int height = activity.getWindowManager().getDefaultDisplay()    
  96.         .getHeight();    
  97.     // 去掉標題欄    
  98.     // Bitmap b = Bitmap.createBitmap(b1, 0, 25, 320, 455);    
  99.     Bitmap b = Bitmap.createBitmap(b1, 0, statusBarHeight, width, height    
  100.         - statusBarHeight);    
  101.     view.destroyDrawingCache();    
  102.     return b;    
  103.   }    
  104.   
  105.   /**   
  106.     * 截圖保存   
  107.     *      
  108.     * @author Johnson   
  109.     * **/    
  110.   private static void savePic(Bitmap b, String filePath, String fileName) {    
  111.   
  112.     File f = new File(filePath);    
  113.   
  114.     if (!f.exists()) {    
  115.       f.mkdir();    
  116.     }    
  117.     FileOutputStream fos = null;    
  118.     try {    
  119.       fos = new FileOutputStream(filePath + File.separator + fileName);    
  120.       if (null != fos) {    
  121.         b.compress(Bitmap.CompressFormat.PNG, 90, fos);    
  122.         fos.flush();    
  123.         fos.close();    
  124.       }    
  125.     } catch (FileNotFoundException e) {    
  126.       e.printStackTrace();    
  127.     } catch (IOException e) {    
  128.       e.printStackTrace();    
  129.     }    
  130.   }    
  131.   
  132.   /**   
  133.     *      
  134.     * 截屏並發送郵件   
  135.     *      
  136.     * @author Johnson   
  137.     * **/    
  138.   public static void takeScreenShotToEmail(Context context, Activity a) {    
  139.   
  140.     if (getAvailableSDcard(context)) {    
  141.       savePic(takeScreenShot(a), filePath, fileName);    
  142.   
  143.       // selectDialog(context);    
  144.       sendEmail(context, null, null, null, detailPath);    
  145.     }    
  146.   
  147.   }    
  148.   
  149.   /***   
  150.     * Sd判斷SD卡是否可用   
  151.     *      
  152.     * @author Johnson minSizeSDcard>50kb   
  153.     * */    
  154.   
  155.   public static boolean getAvailableSDcard(Context context) {    
  156.   
  157.     boolean sdCardExist = Environment.getExternalStorageState().equals(    
  158.         android.os.Environment.MEDIA_MOUNTED); // 判斷sd卡是否存在    
  159.   
  160.     System.out.println("+++" + sdCardExist);    
  161.     if (sdCardExist) {    
  162.       File path = Environment.getExternalStorageDirectory();    
  163.       StatFs stat = new StatFs(path.getPath());    
  164.       long blockSize = stat.getBlockSize();    
  165.       long availableBlocks = stat.getAvailableBlocks();    
  166.       long sdCardSize = (availableBlocks * blockSize) / 1024;// KB值    
  167.   
  168.       if (sdCardSize > minSizeSDcard) {    
  169.         System.out.println("SDcardSize:::" + minSizeSDcard + "KB");    
  170.         return true;    
  171.       } else {    
  172.         Toast.makeText(context, "SD卡空間不足", Toast.LENGTH_SHORT).show();    
  173.       }    
  174.   
  175.     } else {    
  176.       Toast.makeText(context, "請在使用轉發功能之前插入SD卡", Toast.LENGTH_SHORT)    
  177.           .show();    
  178.   
  179.     }    
  180.     return false;    
  181.   }    
  182.   
  183. }      
  184.   
  185.   
  186. package com.johnson.Screenshot;    
  187.   
  188. import android.app.Activity;    
  189. import android.content.Context;    
  190. import android.os.Bundle;    
  191. import android.view.View;    
  192. import android.view.View.OnClickListener;    
  193. import android.widget.Button;    
  194.   
  195. public class ScreenshotActivity extends Activity {    
  196.         /** Called when the activity is first created. */    
  197.        
  198.   Button bt;    
  199.   Context mContext;    
  200.         @Override    
  201.         public void onCreate(Bundle savedInstanceState) {    
  202.                 super.onCreate(savedInstanceState);    
  203.                 setContentView(R.layout.main);    
  204.                 bt=(Button)findViewById(R.id.button1);    
  205.                 mContext=this;    
  206.                 bt.setOnClickListener(new OnClickListener() {    
  207.            
  208.       @Override    
  209.       public void onClick(View v) {    
  210.         // TODO Auto-generated method stub    
  211.         ScreenshotTools.takeScreenShotToEmail(mContext, ScreenshotActivity.this);    
  212.       }    
  213.     });    
  214.                     
  215.                     
  216.                    
  217.         }    
  218. }  
XML/HTML代碼
  1. <?xml version="1.0" encoding="utf-8"?>    
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    
  3.         android:layout_width="fill_parent"    
  4.         android:layout_height="fill_parent"    
  5.         android:orientation="vertical" >    
  6.         <Button    
  7.                 android:id="@+id/button1"    
  8.                 android:layout_width="wrap_content"    
  9.                 android:layout_height="wrap_content"    
  10.                 android:text="@string/button_text" />    
  11.   
  12. </LinearLayout>  
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved