返回顶部
首页 > 资讯 > 精选 >Android实现bitmap指定区域滑动截取功能
  • 384
分享到

Android实现bitmap指定区域滑动截取功能

androidbitmap截取 2023-05-30 19:05:15 384人浏览 泡泡鱼
摘要

突然不知道什么心态,说要做这个,网上找了半天没找到合适的,就自己做了一个。 先上效果图: 透明区域为将要截取的区域,其他阴影部位为舍弃区域 图片资源我写死储存在了raw中,有需要可以自己写获取bitmap。 界面layout:<Rel

突然不知道什么心态,说要做这个,网上找了半天没找到合适的,就自己做了一个。

先上效果图:

Android实现bitmap指定区域滑动截取功能

透明区域为将要截取的区域,其他阴影部位为舍弃区域

图片资源我写死储存在了raw中,有需要可以自己写获取bitmap。

界面layout:

<RelativeLayout xmlns:Android="Http://schemas.android.com/apk/res/android"  xmlns:app="http://schemas.android.com/apk/res-auto"  xmlns:tools="http://schemas.android.com/tools"  android:layout_width="match_parent"  android:layout_height="match_parent"  tools:context="com.admin.myapplication.MainActivity">  <com.admin.myapplication.ScreenShotView    android:id="@+id/screenShotView"    android:layout_width="match_parent"    android:layout_height="match_parent"/>  <LinearLayout    android:id="@+id/title"    android:layout_width="match_parent"    android:layout_height="30dp"    android:background="#000000">    <TextView      android:layout_width="match_parent"      android:layout_height="20dp"      android:layout_gravity="center"      android:gravity="center"      android:text="选择要截取区域"/>  </LinearLayout>  <LinearLayout    android:id="@+id/bottom"    android:layout_width="match_parent"    android:layout_height="70dp"    android:layout_alignParentBottom="true"    android:background="#000000"    android:orientation="horizontal">    <TextView      android:id="@+id/cancel_btn"      android:text="取消"      android:layout_width="0dp"      android:layout_height="wrap_content"      android:layout_weight="1"      android:layout_gravity="center_vertical"      android:gravity="center"/>    <TextView      android:id="@+id/certain_btn"      android:text="确定"      android:layout_width="0dp"      android:layout_height="wrap_content"      android:layout_weight="1"      android:layout_gravity="center_vertical"      android:gravity="center"/>    <TextView      android:id="@+id/restart_btn"      android:text="重试"      android:layout_width="0dp"      android:layout_height="wrap_content"      android:layout_weight="1"      android:layout_gravity="center_vertical"      android:gravity="center"/>  </LinearLayout></RelativeLayout>

--结束END--

本文标题: Android实现bitmap指定区域滑动截取功能

本文链接: https://www.lsjlt.com/news/220861.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作