登录
首页 » Unix_Linux » Bitmap_Delegate

Bitmap_Delegate

于 2013-11-11 发布 文件大小:3KB
0 101
下载积分: 1 下载次数: 5

代码说明:

  Delegate implementing the native methods of android.graphics.Bitmap.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • ListView下拉刷新,上拉加载更多
    ListView下拉刷新,上拉加载更多
    2018-05-31下载
    积分:1
  • android-heart-rate-monitor
    Android Java 通过蓝牙接受数据,画出无线心电图 (ECG analysis software, including a QRS detector algorithm. The algorithm here, designed to detect the QRS complexes in the electrocardiogram using by Pan J and Tompkins WJ. A Real-Time QRS Detection Algorithm.)
    2014-04-21 22:37:04下载
    积分:1
  • Android Intent实例
    Android Intent开发实例 核心代码:package com.amaker.ch06.app;import com.amaker.ch06.app.R;import android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;import android.widget.EditText;/** * @author 郭宏志 * 发送Email */public class MainActivity extends Activity { // 声明视图组件 private EditText toEditText,subjectEditText,contentEditText; private Button sendBtn; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); // 实例化视图组件 toEditText = (EditText)findViewById(R.id.toEditText01); subjectEditText = (EditText)findViewById(R.id.subjectEditText01); contentEditText = (EditText)findViewById(R.id.contentEditText01); sendBtn = (Button)findViewById(R.id.sendButton01); // 为按钮添加单击监听器 sendBtn.setOnClickListener(listener); } // 发送按钮单击监听器 private OnClickListener listener = new OnClickListener() { @Override public void onClick(View v) { // 获得输入信息 String to = toEditText.getText().toString(); String subject = subjectEditText.getText().toString(); String content = contentEditText.getText().toString(); // 创建Intent Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); // 设置内容类型 emailIntent.setType("plain/text"); // 设置额外信息 emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{to}); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, subject); emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, content); startActivity(Intent.createChooser(emailIntent, "发送邮件...")); } };}
    2014-11-24下载
    积分:1
  • android应用集成在线客服功能(可IM实时聊天) 例子源码下载
    android应用集成在线客服功能(可IM实时聊天) 例子源码下载
    2015-04-26下载
    积分:1
  • logcount
    android小程序,用来查找手机中的log文件,并统计log文件的数量,用于手机安全软件进行手机内log文件清理(android small program used to find the phone log files and statistics log file number of security software for mobile phone log file cleanup)
    2013-11-06 14:44:50下载
    积分:1
  • Android.Application.Testing.Guide
    android测试,英文版的,写的很基础(for android test)
    2013-09-22 12:28:52下载
    积分:1
  • AccountSetupIncoming
    Account Setup Incoming for Andriod.
    2013-10-06 00:35:28下载
    积分:1
  • automatically-send-text-messages
    Android自动发送短信,可以让你的手机自动发送短信的代码(Android automatically send a text message that lets your phone automatically send SMS code)
    2012-07-17 16:07:58下载
    积分:1
  • PhoneGap
    PhoneGap.zip,方便快捷开发Android,IOS客户端的开发(PhoneGap.zip, convenient and efficient development of developing Android, IOS clients)
    2014-02-19 10:37:55下载
    积分:1
  • PuzzleVersion1
    基于JNI的JAVA C++混编。 在opencv的android应用。自动破解数独游戏。从摄像头获取图像后自动破解。 包含:opencv代码(c++) android代码(java)(JNI-based JAVA C++ mixed. In the opencv android applications. Automatic crack Sudoku. Automatically after the break to get images from the camera. Includes: opencv code (c++) android code (java))
    2013-11-23 15:05:30下载
    积分:1
  • 696524资源总数
  • 103827会员总数
  • 23今日下载