-
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
-
网络获取图片(缓存)
package com.hsx.imageloader.adapter;import android.content.Context;import android.view.LayoutInflater;import android.view.View;import android.view.ViewGroup;import android.widget.BaseAdapter;import android.widget.ImageView;import android.widget.TextView;import com.hsx.imageloader.listener.AnimateFirstDisplayListener;import com.nostra13.universalimageloader.core.DisplayImageOptions;import com.nostra13.universalimageloader.core.ImageLoader;import com.nostra13.universalimageloader.core.assist.ImageLoadingListener;import com.nostra13.universalimageloader.core.display.RoundedBitmapDisplayer;import com.hsx.imageloader.R;public class ItemAdapter extends BaseAdapter {DisplayImageOptions options;private ImageLoadingListener animateFirstListener = new AnimateFirstDisplayListener();String[] imageUrls;Context context;public ItemAdapter(String[] imageUrls, Context context) {super();this.imageUrls = imageUrls;this.context = context;options = new DisplayImageOptions.Builder().showStubImage(R.drawable.ic_launcher)//设置图片在下载期间显示的图片.showImageForEmptyUri(R.drawable.ic_launcher)//设置图片Uri为空或是错误的时候显示的图片.showImageOnFail(R.drawable.ic_launcher)//设置图片加载/解码过程中错误时候显示的图片.cacheInMemory(true)//是否緩存都內存中.cacheOnDisc(true)//是否緩存到sd卡上.displayer(new RoundedBitmapDisplayer(20)).build();}private class ViewHolder {public TextView text;public ImageView image;}@Overridepublic int getCount() {return imageUrls.length;}@Overridepublic Object getItem(int position) {return position;}@Overridepublic long getItemId(int position) {return position;}@Overridepublic View getView(final int position, View convertView, ViewGroup parent) {final ViewHolder holder;if (convertView == null) {LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);convertView = inflater.inflate(R.layout.item_list_image, parent, false);holder = new ViewHolder();holder.text = (TextView) convertView.findViewById(R.id.text);holder.image = (ImageView) convertView.findViewById(R.id.image);convertView.setTag(holder);} else {holder = (ViewHolder) convertView.getTag();}holder.text.setText("Item " (position 1));// ImageLoaderImageLoader imageLoader = ImageLoader.getInstance();imageLoader.displayImage(imageUrls[position], holder.image, options, animateFirstListener);return convertView;}}
- 2015-03-05下载
- 积分:1
-
android实现VIDEO播放
实现视频播放器,Java源码,用于android平台。是完整的项目文件,编译后可直接运行。采用mediaplay控制方式来实现.
- 2022-03-23 00:40:49下载
- 积分:1
-
EST527蓝牙版源代码
本项目主要实现手机端蓝牙与EST527硬件的蓝牙通讯,可以获取车辆的实时信息(电瓶电压、车速、转速、水温、发动机负荷等),统计信息(平均油耗、瞬时油耗、里程信息等),驾驶习惯信息(点火次数、怠速时间、最高车速、最高转速、累计行驶时间等),故障诊断等功能。
- 2022-05-30 20:58:06下载
- 积分:1
-
EXAM4-4
说明: 利用openGLES为Android系统制作一个动态壁纸(Using openGLES makes an active wallpaper)
- 2020-05-28 08:04:55下载
- 积分:1
-
基于单片机的无刷直流电机控制
单片机实现无刷直流电机的调速控制
- 2021-05-07下载
- 积分:1
-
GPS定位
安卓获取GPS经纬度数据
安卓获取GPS经纬度数据
安卓获取GPS经纬度数据
安卓获取GPS经纬度数据
安卓获取GPS经纬度数据
安卓获取GPS经纬度数据
- 2022-07-17 10:37:01下载
- 积分:1
-
dklasiooeppe
DSADWFDSFDSFDSFSD FDSFSDFSFDSFDSASFSAFDASFDASFDASF ewqfewfdsaf DSAF fdsaf ads FDASFDASFDSAFSAFDASDSADWDSFDSFDSFSD fdsfsdfsfdsfdsasfsafdasfdasf ewqfewfdsaf DSAF fdsaf ads FDASFDASFDSAFDSAFDDASDWFDSSFDSFSD FDSFDSDSFSD FDASFDASFSAFDASFDAWFDSAF EWWFDSAF DSAF fdsaf ads FDASFDASSFDASFDSFSD EWWFDSAF DSAF adsfdsaf ads FDASFDASFDSAFDSAFDSAFDSDSDSFDSFSD FDSFDSFSFDASFSASFSAFDASFDASF ewqfewfdsaf dsa fdsaf ads FDASFDASFDSAFDASAFDASDSADFDSFDSFDSFSD FDSFSDFSFDSFDSFSD ewqfewfdsaf dsa fdsaf ads FDASFDASFDSAFDSAFDSDASSFDASFDSFDSFDSFSD EWQFEDSAF DSAF fdsaf ads FDASFDFSFfdsfsdfsfdsfdsasfsafdasfdasf ewqfewfdsa公司
- 2022-11-24 02:55:03下载
- 积分:1
-
android 幸运大转盘 实例源码下载
手动滑动转盘。
- 2014-09-01下载
- 积分:1
-
一种简单的计步器
学习计步器用的,很简单,适合初学者
- 2022-03-28 21:13:01下载
- 积分:1