当前位置:  编程技术>移动开发
本页文章导读:
    ▪播发图片的类        播放图片的类 public class GGView extends View { int COMPONENT_WIDTH; //该控件宽度 int COMPONENT_HEIGHT; //该控件高度 boolean initflag=false; //是否要获取控件的高度和宽度标志 static Bitmap[] bma; .........
    ▪ Objective-C中协媾和委托        Objective-C中协议和委托 Objective-C中的协议(Protocol)类似于常用的接口,协议(Protocols)中定义的方法,在类中实现。@protocol MyFirstProtocol- (void)myFirstProtocolMethod;@end在iPhone OS中,协议(Protoco.........
    ▪ speech recognition中施用PendingIntent       speech recognition中使用PendingIntent http://stackoverflow.com/questions/4530472/widget-that-calls-speech-recognition-app http://stackoverflow.com/questions/6466328/recognizerintent-how-to-add-a-bundle-to-a-pending-intent   // this intent points.........

[1]播发图片的类
    来源: 互联网  发布时间: 2014-02-18
播放图片的类
public class GGView extends View {
	int COMPONENT_WIDTH;							//该控件宽度
	int COMPONENT_HEIGHT;							//该控件高度
	boolean initflag=false;								//是否要获取控件的高度和宽度标志
	static Bitmap[] bma;										//需要播放的图片的数组
	Paint paint;										//画笔
	 int[] drawablesId;									//图片ID数组
	int currIndex=0;										//图片ID数组下标,根据此变量画图片
	boolean workFlag=true;								//播放图片线程标志位
	public GGView(Context father,AttributeSet as) { 			//构造器
		super(father,as);								
		drawablesId=new int[]{						//初始化图片ID数组
			R.drawable.adv1,							//将需要播放的图片ID放于此处即可
			R.drawable.adv2,	
			R.drawable.adv3,	
			};
		bma=new Bitmap[drawablesId.length];				//创建存放图片的数组
		initBitmaps();									//调用初始化图片函数,初始化图片数组
		paint=new Paint();								//创建画笔
		paint.setFlags(Paint.ANTI_ALIAS_FLAG);				//消除锯齿	
		new Thread(){									//创建播放图片线程
			public void run(){
				while(workFlag){
					currIndex=(currIndex+1)%drawablesId.length;//改变ID数组下标值
					GGView.this.postInvalidate();			//绘制
					try {
						Thread.sleep(3000);				//休息三秒
					} catch (InterruptedException e) {						
						e.printStackTrace();
					}}}}.start();							//启动线程
	}	
	public void initBitmaps(){								//初始化图片函数
		Resources res=this.getResources();					//获取Resources对象
		for(int i=0;i<drawablesId.length;i++){					
			bma[i]=BitmapFactory.decodeResource(res, drawablesId[i]);
		}}	
	public void onDraw(Canvas canvas){						//绘制函数
		if(!initflag) {									//第一次绘制时需要获取宽度和高度
			COMPONENT_WIDTH=this.getWidth();			//获取view的宽度
			COMPONENT_HEIGHT=this.getHeight();			//获取view的高度
			initflag=true;
		}
		int picWidth=bma[currIndex].getWidth();				//获取当前绘制图片的宽度
		int picHeight=bma[currIndex].getHeight();				//获取当前绘制图片的高度
		int startX=(COMPONENT_WIDTH-picWidth)/2;			//得到绘制图片的左上角X坐标
		int startY=(COMPONENT_HEIGHT-picHeight)/2; 		//得到绘制图片的左上角Y坐标
		canvas.drawARGB(255, 200, 128, 128);				//设置背景色
		canvas.drawBitmap(bma[currIndex], startX,startY, paint);	//绘制图片
	}}


    
[2] Objective-C中协媾和委托
    来源: 互联网  发布时间: 2014-02-18
Objective-C中协议和委托
Objective-C中的协议(Protocol)类似于常用的接口,协议(Protocols)中定义的方法,在类中实现。
@protocol MyFirstProtocol
- (void)myFirstProtocolMethod;
@end
在iPhone OS中,协议(Protocol)通常用来实现委托对象(Delegate Object)。委托对象(Delegate Object)一般用来自己定义行为或者动作,也就是调用自己定义方法,但自己不实现该方法,委托其它的类来实现该方法。
UIApplication类就是一个典型的例子。UIApplication类中定义了一个应用程序应有的行为或者动作。而不是强制让你的UIApplication子类去接受当前应用程序的状态消息并做出相应处理。UIApplication类通过调用特殊的方法,来传递这些消息给它的委托对象。这个委托对象通过实现名为UIApplicationDelegate的协议(Protocol),之后就可以接受到当前应用程序的状态消息并做出相应处理。比如内存不够的错误,应用程序被中断等重要消息。
下面是一个HelloWorld代码:
main.m

  
 #import  
    int main(int argc, char *argv[])  
    {  
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];  
    int retVal = UIApplicationMain(argc, argv, nil, nil);  
    [pool release];  
    return retVal;  
    }  


    
[3] speech recognition中施用PendingIntent
    来源: 互联网  发布时间: 2014-02-18
speech recognition中使用PendingIntent

http://stackoverflow.com/questions/4530472/widget-that-calls-speech-recognition-app

http://stackoverflow.com/questions/6466328/recognizerintent-how-to-add-a-bundle-to-a-pending-intent

 

// this intent points to activity that should handle results
Intent activityIntent = new Intent(context, ResultsActivity.class);
// this intent wraps results activity intent
PendingIntent resultsPendingIntent = PendingIntent.getActivity(context, 0, activityIntent, 0);

// this intent calls the speech recognition
Intent voiceIntent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
voiceIntent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
voiceIntent.putExtra(RecognizerIntent.EXTRA_PROMPT, "Speech recognition demo");
voiceIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
voiceIntent.putExtra(RecognizerIntent.EXTRA_RESULTS_PENDINGINTENT, resultsPendingIntent);

// this intent wraps voice recognition intent
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, voiceIntent, 0);
rv.setOnClickPendingIntent(R.id.btn, pendingIntent);
 

    
最新技术文章:
▪Android开发之登录验证实例教程
▪Android开发之注册登录方法示例
▪Android获取手机SIM卡运营商信息的方法
▪Android实现将已发送的短信写入短信数据库的...
▪Android发送短信功能代码
▪Android根据电话号码获得联系人头像实例代码
▪Android中GPS定位的用法实例
▪Android实现退出时关闭所有Activity的方法
▪Android实现文件的分割和组装
▪Android录音应用实例教程
▪Android双击返回键退出程序的实现方法
▪Android实现侦听电池状态显示、电量及充电动...
▪Android获取当前已连接的wifi信号强度的方法
▪Android实现动态显示或隐藏密码输入框的内容
▪根据USER-AGENT判断手机类型并跳转到相应的app...
▪Android Touch事件分发过程详解
▪Android中实现为TextView添加多个可点击的文本
▪Android程序设计之AIDL实例详解
▪Android显式启动与隐式启动Activity的区别介绍
▪Android按钮单击事件的四种常用写法总结
▪Android消息处理机制Looper和Handler详解
▪Android实现Back功能代码片段总结
▪Android实用的代码片段 常用代码总结
▪Android实现弹出键盘的方法
▪Android中通过view方式获取当前Activity的屏幕截...
▪Android提高之自定义Menu(TabMenu)实现方法
▪Android提高之多方向抽屉实现方法
▪Android提高之MediaPlayer播放网络音频的实现方法...
▪Android提高之MediaPlayer播放网络视频的实现方法...
▪Android提高之手游转电视游戏的模拟操控
 


站内导航:


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

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

浙ICP备11055608号-3