当前位置:  编程技术>综合
本页文章导读:
    ▪系统使用详解之传感器详解      本文讲解android中的传感器,这是智能手机中的一个重要组成方面。 我们首先来讲解一下android手机中对坐标的定义: X轴的方向是沿着屏幕水平方向从左向右,较短的边需要水平放置,较长的.........
    ▪ubuntu下利用crontab自动运行ruby脚本      需求: 每隔一分钟运行一次指定的ruby脚本 实现: 这里我们提供一份儿实验用代码 如果能调通 则我们就可以运行任何脚本了 实验代码如下: 作者:railsbug 发表于2013-1-8 20:3.........
    ▪004 在Xcode4.5上创建IOS6.0应用 (等待控件,进度条)      为iOS应用程序开发等待控件 UIActivityIndicatorView 在iOS中开发一个等待控件其实也跟对话框一样特别简单 第一步:把所需要的控件拖入到屏幕当中,如下图 第二步:在ViewController.h文件中.........

[1]系统使用详解之传感器详解
    来源: 互联网  发布时间: 2013-11-10

本文讲解android中的传感器,这是智能手机中的一个重要组成方面。

我们首先来讲解一下android手机中对坐标的定义:

X轴的方向是沿着屏幕水平方向从左向右,较短的边需要水平放置,较长的变需要垂直放置

Y轴的方向是从屏幕的左下角开始沿着屏幕的垂直方向指向屏幕的顶端

Z轴是将手机平放在桌子上,从手机里指向天空


传感器使用到一个values数组,他一般具有三个参数,参数的意义和传感器类型有关。


一、方向传感器

values[0]:表示方位,即手机围绕Z轴旋转的角度,0表示北,90表示东,180表示南,270表示西,常用于电子罗盘

values[1]:表示手机倾斜角度,0是完全水平(一般为-5到5),完全倾斜是+-180,常用于测量物体倾斜度

values[2]:表示手机沿Y轴的滚动角度,为+-90

二、加速度传感器

values分别表示三个方向上的加速度值


传感器实例:

一、电子罗盘

通过手机上的二维磁阻传感器,我们可以方便的实现电子罗盘(使用时需要将手机平放)

public class Main extends Activity implements SensorEventListener
{
	private ImageView imageView;
	private float currentDegree = 0f;
 
	public void onAccuracyChanged(Sensor sensor, int accuracy)
	{

	}

	public void onSensorChanged(SensorEvent event)
	{
		if (event.sensor.getType() == Sensor.TYPE_ORIENTATION)
		{  
			
			float degree = event.values[0];	
			RotateAnimation ra = new RotateAnimation(currentDegree, -degree,
					Animation.RELATIVE_TO_SELF, 0.5f,
					Animation.RELATIVE_TO_SELF, 0.5f);
			ra.setDuration(200);
			
			imageView.startAnimation(ra); 
			currentDegree = -degree;

		}

	}

	@Override
	public void onCreate(Bundle savedInstanceState)
	{
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		imageView = (ImageView) findViewById(R.id.imageview);

		SensorManager sm = (SensorManager) getSystemService(SENSOR_SERVICE);
		sm.registerListener(this, sm.getDefaultSensor(Sensor.TYPE_ORIENTATION),
				SensorManager.SENSOR_DELAY_FASTEST);
		
		
	}
}



二、计步器

通过检测人走路时的上下震动来计数

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:orientation="vertical" android:layout_width="fill_parent"
	android:layout_height="fill_parent">
	<LinearLayout android:orientation="horizontal"
		android:layout_width="fill_parent" android:layout_height="wrap_content">

		<Button android:id="@+id/btnStart" android:layout_width="wrap_content"
			android:layout_height="wrap_content" android:text="开始" />
		<Button android:id="@+id/btnReset" android:layout_width="wrap_content"
			android:layout_height="wrap_content" android:text="重置" />
		<Button android:id="@+id/btnStop" android:layout_width="wrap_content"
			android:layout_height="wrap_content" android:text="停止" />
	</LinearLayout>
	<TextView android:id="@+id/textview" android:layout_width="fill_parent"
		android:layout_height="fill_parent" android:textColor="#FF0"
		android:background="#00F" android:textSize="150sp" android:gravity="center" />
</LinearLayout>

public class Main extends Activity implements SensorEventListener,
		OnClickListener
{
	private TextView textView;
	private float lastPoint;
	private int count = 0;
	private boolean flag = true;
	private SensorManager sm;

	public void onClick(View view)
	{
		String msg = "";
		switch (view.getId())
		{
			case R.id.btnStart:
				sm = (SensorManager) getSystemService(SENSOR_SERVICE);
				sm.registerListener(this, sm
						.getDefaultSensor(Sensor.TYPE_ORIENTATION),
						SensorManager.SENSOR_DELAY_FASTEST);
				msg = "已经开始计步器.";
				break;

			case R.id.btnReset:
				count = 0;
				msg = "已经重置计步器.";
				break;
			case R.id.btnStop:
				sm.unregisterListener(this);
				count = 0;
				msg = "已经停止计步器.";
				break;
		}
		textView.setText(String.valueOf(count));
		Toast.makeText(this, msg, Toast.LENGTH_SHORT).show();

	}

	@Override
	public void onCreate(Bundle savedInstanceState)
	{
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		Button btnStart = (Button) findViewById(R.id.btnStart);
		Button btnReset = (Button) findViewById(R.id.btnReset);
		Button btnStop = (Button) findViewById(R.id.btnStop);
		btnStart.setOnClickListener(this);
		btnReset.setOnClickListener(this);
		btnStop.setOnClickListener(this);
		textView = (TextView) findViewById(R.id.textview);
		textView.setText(String.valueOf(count));
		
	}

	public void onAccuracyChanged(Sensor sensor, int accuracy)
	{

	}

	public void onSensorChanged(SensorEvent event)
	{
		if (flag)
		{
			lastPoint = event.values[1];
			flag = false;
		}
		if (Math.abs(event.values[1] - lastPoint) > 8)
		{
			lastPoint = event.values[1];
			textView.setText(String.valueOf(++count));
		}
	}
}

在本实例中,我设置两次values[1]的差大于8即走了一步,大家按需求设置





作者:x359981514 发表于2013-1-8 20:37:59 原文链接
阅读:0 评论:0 查看评论

    
[2]ubuntu下利用crontab自动运行ruby脚本
    来源: 互联网  发布时间: 2013-11-10

需求:

每隔一分钟运行一次指定的ruby脚本

实现:

这里我们提供一份儿实验用代码 如果能调通 则我们就可以运行任何脚本了

实验代码如下:


作者:railsbug 发表于2013-1-8 20:35:54 原文链接
阅读:0 评论:0 查看评论

    
[3]004 在Xcode4.5上创建IOS6.0应用 (等待控件,进度条)
    来源: 互联网  发布时间: 2013-11-10

为iOS应用程序开发等待控件

UIActivityIndicatorView

在iOS中开发一个等待控件其实也跟对话框一样特别简单

第一步:把所需要的控件拖入到屏幕当中,如下图



第二步:在ViewController.h文件中加入如下内容,在ViewController.m文件中加入实现方法

ViewController.h

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController{
    //定义一个等待控件
    IBOutlet UIActivityIndicatorView * activityIndicatorView;
}

//提供GET SET
@property(nonatomic,retain)UIActivityIndicatorView * activityIndicatorView;

//按钮的点击事件
-(IBAction)prass:(id)sender;

@end

ViewController.m

@implementation ViewController

//实现GET SET
@synthesize activityIndicatorView;


-(IBAction)prass:(id)sender{
    if ([activityIndicatorView isAnimating]) {
        [activityIndicatorView stopAnimating];
    }else{
        [activityIndicatorView startAnimating];
    }
    
}

- (void)viewDidLoad
{
    [super viewDidLoad];
	// Do any additional setup after loading the view, typically from a nib.
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}


//消除内存
- (void)dealloc
{
    [activityIndicatorView release];
    [super dealloc];
}
@end

第三步在NIB文件中进行关联

大慨就是按照箭头所指的方向进行关联



就可以实现如下显示的效果



注意:如何让控件在启动的时候不显示,停止的时候消失呢?只有在运行的时候才显示呢?答案很简单只要设置一个属性就行啦



Progress  NSTimer

在iOS中开发一个进度条其实也跟等待一样特别简单

第一步:开发界面



第二步编码

ViewController.h

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController{
    IBOutlet UIProgressView *progressview;
    NSTimer *timer;
}

@property(nonatomic,retain) UIProgressView *progressview;
@property(nonatomic,assign) NSTimer *timer;

-(IBAction)Onclick;

@end

ViewController.m

@implementation ViewController

@synthesize progressview;
@synthesize timer;

-(IBAction)Onclick{
    progressview.progress = 0.0;
    timer = [NSTimer scheduledTimerWithTimeInterval:1.0
                                             target:self
                                           selector:@selector(update)
                                           userInfo:nil
                                            repeats:YES];
    
}


-(void) update{
    progressview.progress +=0.1;
    NSLog(@"%f",progressview.progress);
    if (progressview.progress == 1.0) {
        [timer invalidate];
    }
}


- (void)viewDidLoad
{
    [super viewDidLoad];
	// Do any additional setup after loading the view, typically from a nib.
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (void)dealloc
{
    [progressview release];
    [super dealloc];
}

@end

第三步同样跟上面的等待控件一样,进行对界面输入输出。运行结果就是,进度条每一秒钟运行一次,10秒后完成




作者:shuaiyinoo 发表于2013-1-8 20:30:06 原文链接
阅读:26 评论:0 查看评论

    
最新技术文章:
▪error while loading shared libraries的解決方法    ▪版本控制的极佳实践    ▪安装多个jdk,多个tomcat版本的冲突问题
▪简单选择排序算法    ▪国外 Android资源大集合 和个人学习android收藏    ▪.NET MVC 给loading数据加 ajax 等待loading效果
▪http代理工作原理(3)    ▪关注细节-TWaver Android    ▪Spring怎样把Bean实例暴露出来?
▪java写入excel2007的操作    ▪http代理工作原理(1)    ▪浅谈三层架构
▪http代理工作原理(2)    ▪解析三层架构……如何分层?    ▪linux PS命令
▪secureMRT Linux命令汉字出现乱码    ▪把C++类成员方法直接作为线程回调函数    ▪weak-and算法原理演示(wand)
▪53个要点提高PHP编程效率    ▪linux僵尸进程    ▪java 序列化到mysql数据库中
▪利用ndk编译ffmpeg    ▪活用CSS巧妙解决超长文本内容显示问题    ▪通过DBMS_RANDOM得到随机
▪CodeSmith 使用教程(8): CodeTemplate对象    ▪android4.0 进程回收机制    ▪仿天猫首页-产品分类
▪从Samples中入门IOS开发(四)------ 基于socket的...    ▪工作趣事 之 重装服务器后的网站不能正常访...    ▪java序列化学习笔记
▪Office 2010下VBA Addressof的应用    ▪一起来学ASP.NET Ajax(二)之初识ASP.NET Ajax    ▪更改CentOS yum 源为163的源
▪ORACLE 常用表达式    ▪记录一下,AS3反射功能的实现方法    ▪u盘文件系统问题
▪java设计模式-观察者模式初探    ▪MANIFEST.MF格式总结    ▪Android 4.2 Wifi Display核心分析 (一)
▪Perl 正则表达式 记忆方法    ▪.NET MVC 给loading数据加 ajax 等待laoding效果    ▪java 类之访问权限
▪extjs在myeclipse提示    ▪xml不提示问题    ▪Android应用程序运行的性能设计
▪sharepoint 2010 自定义列表启用版本记录控制 如...    ▪解决UIScrollView截获touch事件的一个极其简单有...    ▪Chain of Responsibility -- 责任链模式
▪运行skyeye缺少libbfd-2.18.50.0.2.20071001.so问题    ▪sharepoint 2010 使用sharepoint脚本STSNavigate方法实...    ▪让javascript显原型!
▪kohana基本安装配置    ▪MVVM开发模式实例解析    ▪sharepoint 2010 设置pdf文件在浏览器中访问
▪spring+hibernate+事务    ▪MyEclipse中文乱码,编码格式设置,文件编码格...    ▪struts+spring+hibernate用jquery实现数据分页异步加...
▪windows平台c++开发"麻烦"总结    ▪Android Wifi几点    ▪Myeclipse中JDBC连接池的配置
Web服务器/前端 iis7站长之家
▪100个windows平台C++开发错误之七编程    ▪串口转以太网模块WIZ140SR/WIZ145SR 数据手册(版...    ▪初识XML(三)Schema
▪Deep Copy VS Shallow Copy    ▪iphone游戏开发之cocos2d (七) 自定义精灵类,实...    ▪100个windows平台C++开发错误之八编程
▪C++程序的内存布局    ▪将不确定变为确定系列~Linq的批量操作靠的住...    ▪DIV始终保持在浏览器中央,兼容各浏览器版本
▪Activity生命周期管理之三——Stopping或者Restarti...    ▪《C语言参悟之旅》-读书笔记(八)    ▪C++函数参数小结
▪android Content Provider详解九    ▪简单的图片无缝滚动效果    ▪required artifact is missing.
▪c++编程风格----读书笔记(1)    ▪codeforces round 160    ▪【Visual C++】游戏开发笔记四十 浅墨DirectX教程...
▪【D3D11游戏编程】学习笔记十八:模板缓冲区...    ▪codeforces 70D 动态凸包    ▪c++编程风格----读书笔记(2)
▪Android窗口管理服务WindowManagerService计算Activity...    ▪keytool 错误: java.io.FileNotFoundException: MyAndroidKey....    ▪《HTTP权威指南》读书笔记---缓存
▪markdown    ▪[设计模式]总结    ▪网站用户行为分析在用户市场领域的应用
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3