Android实现的截屏小程序示例
程序员文章站
2024-03-03 18:33:40
本文实例讲述了android实现的截屏小程序。分享给大家供大家参考,具体如下:
先看截图,不过这个截屏还不够完整,头上的statusbar没有,呈黑色。
多按了几次...
本文实例讲述了android实现的截屏小程序。分享给大家供大家参考,具体如下:
先看截图,不过这个截屏还不够完整,头上的statusbar没有,呈黑色。
多按了几次,就成这样了,呵呵。
package com.test; import android.app.activity; import android.graphics.bitmap; import android.graphics.canvas; import android.graphics.bitmap.config; import android.os.bundle; import android.view.view; import android.widget.button; import android.widget.imageview; import android.widget.imageview.scaletype; public class screenprinter extends activity { /** called when the activity is first created. */ boolean customtitlesupported; public void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.screen_printer); button btn = (button)findviewbyid(r.id.btn); btn.setonclicklistener(new button.onclicklistener(){ public void onclick(view arg0) { imageview im = (imageview)findviewbyid(r.id.img); bitmap bmp = bitmap.createbitmap(320, 480, config.argb_8888); view cv = getwindow().getdecorview(); cv.draw(new canvas(bmp)); im.setscaletype(scaletype.fit_xy); im.setimagebitmap(bmp); }}); } }
资源文件:
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:background="@drawable/border"> <button android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/btn" android:text="截屏"/> <linearlayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1" android:padding="10dip" android:background="#ffffdd"> <imageview android:id="@+id/img" android:layout_width="fill_parent" android:layout_height="fill_parent"/> </linearlayout> </linearlayout>
更多关于android相关内容感兴趣的读者可查看本站专题:《android图形与图像处理技巧总结》、《android开发入门与进阶教程》、《android调试技巧与常见问题解决方法汇总》、《android多媒体操作技巧汇总(音频,视频,录音等)》、《android基本组件用法总结》、《android视图view技巧总结》、《android布局layout技巧总结》及《android控件用法总结》
希望本文所述对大家android程序设计有所帮助。