当前位置: 首页>編程日記>正文

android实现截屏分享,Android截屏、保存、分享

android实现截屏分享,Android截屏、保存、分享

原理:将截取到的Bitmap赋给Dialog上的ImageView,并对Dialog加了弹出和收起的动画,实现截屏效果。

首先创建一个layout名为show_cut_screen_layout用于弹出截图对话框,上面是一个image,下面是横向线性布局的两个button。

65297d5971ce591948dbd027f994fc7c.png

然后设置对话框弹出的style:

进入values——style.xml里面添加如下代码:

接下来在res文件夹下新建一个anim文件夹用于保存对话框弹出和收起动画:

在里面新建popview_in_amin.xml   :

和popview_out_amin.xml   :

接下来是java代码:

//截屏功能

private void popShotSrceenDialog(){

final AlertDialog cutDialog = new AlertDialog.Builder(this).create();

View dialogView = View.inflate(this, R.layout.show_cut_screen_layout, null);

ImageView showImg = (ImageView) dialogView.findViewById(R.id.show_cut_screen_img);

dialogView.findViewById(R.id.share_cancel).setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View v) {

cutDialog.dismiss();

}

});

dialogView.findViewById(R.id.share_img).setOnClickListener(new View.OnClickListener() {

@Override

public void onClick(View v) {

//分享

Uri pa=Uri.fromFile(new File(filePath));//根据路径转化为uri

Intent imageIntent = new Intent(Intent.ACTION_SEND);//调用系统的ACTION_SEND

imageIntent.setType("image/png");

imageIntent.putExtra(Intent.EXTRA_STREAM, pa);//EXTRA_STREAM对应转化为uri的path

startActivity(Intent.createChooser(imageIntent, "分享"));

}

});

//获取当前屏幕的大小

int width = getWindow().getDecorView().getRootView().getWidth();

int height = getWindow().getDecorView().getRootView().getHeight();

//生成相同大小的图片

Bitmap temBitmap = Bitmap.createBitmap( width, height, Bitmap.Config.ARGB_8888 );

//找到当前页面的跟布局

View view = getWindow().getDecorView().getRootView();

//设置缓存

view.setDrawingCacheEnabled(true);

view.buildDrawingCache();

//从缓存中获取当前屏幕的图片

temBitmap = view.getDrawingCache();

//保存图片

if (temBitmap != null)

{

try {

// 获取内置SD卡路径

String sdCardPath = Environment.getExternalStorageDirectory().getPath();

// 图片文件路径,获取系统时间

long time=System.currentTimeMillis();

SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss ");

java.util.Date date=new java.util.Date(time);

String str=sdf.format(date);

filePath = sdCardPath + File.separator +str+"screenshot.png";

File file = new File(filePath);

FileOutputStream os = new FileOutputStream(file);

temBitmap.compress(Bitmap.CompressFormat.PNG, 100, os);

os.flush();

os.close();

} catch (Exception e) {

Toast.makeText(be_qrcode.this,"保存失败,请检查权限或清理内存",Toast.LENGTH_SHORT).show();

}

}

showImg.setImageBitmap(temBitmap);

cutDialog.setView(dialogView);

Window window = cutDialog.getWindow();

window.setBackgroundDrawableResource(android.R.color.transparent);

WindowManager m = window.getWindowManager();

Display d = m.getDefaultDisplay(); // 获取屏幕宽、高用

WindowManager.LayoutParams p = window.getAttributes(); // 获取对话框当前的参数值

p.height = (int) (d.getHeight() * 0.8); // 高度设置为屏幕的0.6

p.gravity = Gravity.CENTER;//设置弹出框位置

window.setAttributes(p);

window.setWindowAnimations(R.style.dialogWindowAnim);

cutDialog.show();

}


https://www.fengoutiyan.com/post/13667.html

相关文章:

  • 截屏图片保存在哪里
  • 安卓长截屏
  • android截屏
  • 安卓手机截屏方法
  • 安卓截图
  • 截屏分享
  • 华为截屏设置在哪里
  • 电脑如何截屏截图
  • 鏡像模式如何設置在哪,圖片鏡像操作
  • 什么軟件可以把圖片鏡像翻轉,C#圖片處理 解決左右鏡像相反(旋轉圖片)
  • 手機照片鏡像翻轉,C#圖像鏡像
  • 視頻鏡像翻轉軟件,python圖片鏡像翻轉_python中鏡像實現方法
  • 什么軟件可以把圖片鏡像翻轉,利用PS實現圖片的鏡像處理
  • 照片鏡像翻轉app,java實現圖片鏡像翻轉
  • 什么軟件可以把圖片鏡像翻轉,python圖片鏡像翻轉_python圖像處理之鏡像實現方法
  • matlab下載,matlab如何鏡像處理圖片,matlab實現圖像鏡像
  • 圖片鏡像翻轉,MATLAB:鏡像圖片
  • 鏡像翻轉圖片的軟件,圖像處理:實現圖片鏡像(基于python)
  • canvas可畫,JavaScript - canvas - 鏡像圖片
  • 圖片鏡像翻轉,UGUI優化:使用鏡像圖片
  • Codeforces,CodeForces 1253C
  • MySQL下載安裝,Mysql ERROR: 1253 解決方法
  • 勝利大逃亡英雄逃亡方案,HDU - 1253 勝利大逃亡 BFS
  • 大一c語言期末考試試題及答案匯總,電大計算機C語言1253,1253《C語言程序設計》電大期末精彩試題及其問題詳解
  • lu求解線性方程組,P1253 [yLOI2018] 扶蘇的問題 (線段樹)
  • c語言程序設計基礎題庫,1253號C語言程序設計試題,2016年1月試卷號1253C語言程序設計A.pdf
  • 信奧賽一本通官網,【信奧賽一本通】1253:抓住那頭牛(詳細代碼)
  • c語言程序設計1253,1253c語言程序設計a(2010年1月)
  • 勝利大逃亡英雄逃亡方案,BFS——1253 勝利大逃亡
  • 直流電壓測量模塊,IM1253B交直流電能計量模塊(艾銳達光電)
  • c語言程序設計第三版課后答案,【渝粵題庫】國家開放大學2021春1253C語言程序設計答案
  • 18轉換為二進制,1253. 將數字轉換為16進制
  • light-emitting diode,LightOJ-1253 Misere Nim
  • masterroyale魔改版,1253 Dungeon Master
  • codeformer官網中文版,codeforces.1253 B
  • c語言程序設計考研真題及答案,2020C語言程序設計1253,1253計算機科學與技術專業C語言程序設計A科目2020年09月國家開 放大學(中央廣播電視大學)
  • c語言程序設計基礎題庫,1253本科2016c語言程序設計試題,1253電大《C語言程序設計A》試題和答案200901
  • 肇事逃逸車輛無法聯系到車主怎么辦,1253尋找肇事司機