最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Android實(shí)現(xiàn)截圖和分享功能的代碼

 更新時(shí)間:2017年07月20日 10:07:48   作者:kong濤  
截圖和分享功能大家都玩過(guò),下面通過(guò)本文給大家介紹Android實(shí)現(xiàn)截圖和分享功能,代碼簡(jiǎn)單易懂,非常不錯(cuò),具有參考借鑒價(jià)值,需要的的朋友參考下吧

先給大家展示下效果圖吧

直接上代碼:

xml的布局:

<Button
 android:id="@+id/btn_jp"
 android:layout_marginTop="10dip"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:gravity="center"
 android:text="截屏"
 android:textColor="#ff999999" />
<Button
 android:id="@+id/btn_share"
 android:layout_marginTop="10dip"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:gravity="center"
 android:text="分享"
 android:textColor="#ff999999" />

activity的方法:

private String imagePath;
//截屏
  btnJp.setOnClickListener(new View.OnClickListener() {
   @Override
   public void onClick(View v) {
//    image = ScreenShot.shoot(AddressSelecterActivity.this);
    screenshot();
//    Bitmap bitmap = getBitmapByView(scrollView);
//    savePic(bitmap);
   }
  });
  //分享
  btnShare.setOnClickListener(new View.OnClickListener() {
   @Override
   public void onClick(View v) {
    if (imagePath != null){
     Intent intent = new Intent(Intent.ACTION_SEND); // 啟動(dòng)分享發(fā)送的屬性
     File file = new File(imagePath);
     intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));// 分享的內(nèi)容
     intent.setType("image/*");// 分享發(fā)送的數(shù)據(jù)類(lèi)型
     Intent chooser = Intent.createChooser(intent, "Share screen shot");
     if(intent.resolveActivity(getPackageManager()) != null){
      startActivity(chooser);
     }
    } else {
     Toast.makeText(AddressSelecterActivity.this, "先截屏,再分享", Toast.LENGTH_SHORT).show();
    }
   }
  });

截取工具:

//截取屏幕的方法
private void screenshot() {
 // 獲取屏幕
 View dView = getWindow().getDecorView();
 dView.setDrawingCacheEnabled(true);
 dView.buildDrawingCache();
 Bitmap bmp = dView.getDrawingCache();
 if (bmp != null)
 {
  try {
   // 獲取內(nèi)置SD卡路徑
   String sdCardPath = Environment.getExternalStorageDirectory().getPath();
   // 圖片文件路徑
   imagePath = sdCardPath + File.separator + "screenshot.png";
   File file = new File(imagePath);
   FileOutputStream os = new FileOutputStream(file);
   bmp.compress(Bitmap.CompressFormat.PNG, 100, os);
   os.flush();
   os.close();
  } catch (Exception e) {
  }
 }
}

總結(jié)

以上所述是小編給大家介紹的Android實(shí)現(xiàn)截圖和分享功能的代碼,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!

相關(guān)文章

最新評(píng)論

霸州市| 闽侯县| 永宁县| 镇平县| 庆云县| 平阳县| 汉沽区| 青海省| 宜良县| 冷水江市| 商城县| 玉环县| 冀州市| 常德市| 托克托县| 屯门区| 汉川市| 余庆县| 营口市| 新建县| 禄丰县| 大丰市| 漯河市| 安岳县| 辽宁省| 中牟县| 玉溪市| 延安市| 涡阳县| 永靖县| 临汾市| 安泽县| 交口县| 肃北| 高碑店市| 新昌县| 清水河县| 阳城县| 朝阳县| 台东市| 成安县|