上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页
摘要: 信息系统项目管理师论文模版!你可以借鉴下: 1.摘要部分:一般应在 300-400 字之间,我的建议是最好能写到摘要部分的最后一行。 摘要部分的大体格式是: ****年**月,我参加了***单位的****项目的开发(或管理),承担项目的***工作。该单位力图通过****项目建设,实现****的目标,进而达到****的目的。 本文结合笔者实践,以****项目为例,讨论了*****(论题)技术。包括***、***、***(这是纲要,一般三点足矣),并重点叙述了使用***技术(或方法)的过程。最后,针对使用***技术(或方法)中存在的不足,提出了今后的改进思路。 2.正文部分:一般不应少于... 阅读全文
posted @ 2012-11-09 16:04 pandans 阅读(327) 评论(0) 推荐(0)
摘要: Intent intent = new Intent("android.intent.action.SEND");intent.setPackage(com.sina.weibo); intent.setType("image/*"); intent.putExtra(Intent.EXTRA_SUBJECT, "分享"); intent.putExtra(Intent.EXTRA_TEXT, "终于可以了!!!"); intent.putExtra(Intent.EXTRA_STREAM,Uri.parse(&q 阅读全文
posted @ 2012-10-22 11:01 pandans 阅读(201) 评论(0) 推荐(0)
摘要: 在android联系人界面,点击添加头像后可以选择一个图像的部分区域来作为头像。查看了一下代码,模仿着写了一段从文件中选择部分区域:Java代码Intentintent=newIntent("com.android.camera.action.CROP"); intent.setClassName("com.android.camera","com.android.camera.CropImage"); Filefile=newFile(filePath); Uriuri=Uri.fromFile(file); intent.setD 阅读全文
posted @ 2012-10-15 12:02 pandans 阅读(4083) 评论(0) 推荐(0)
摘要: View中getContext()一般就是传入的Activity实例,在需要使用Activity对象时直接可以强制转换成Activity。但是:注意再Dialog总 getContext() 获得的并不是Activity实例,需要在构造函数中使用一个Context保存传入的context。 阅读全文
posted @ 2012-05-30 16:06 pandans 阅读(5487) 评论(0) 推荐(0)
摘要: erlang日志功能----问题解析更新: 2011-07-13来源: 互联网字体:【大中小】 用mochiweb搭建好代码框架后,发现并没有日志功能,于是决定增加日志。 我用过log4c以及ACE的日志功能。其中,最喜欢的就是,日志信息的分级过滤功能。可以根据不同情况,控制日志中输出的信息,而不用在代码中注释掉部分信息。还有日志大小控制功能,可以避免日志文件占用过多的系统资源。 《ProgrammingErlang》说,在erlang OTP中已经内置了一个日志模块,并具备过滤功能。直接使用其提供的配置文件elog4.config。并定义了4个宏,分别对应error_logger中的erro 阅读全文
posted @ 2012-04-12 10:25 pandans 阅读(689) 评论(0) 推荐(0)
摘要: =Useful Links=====Cluster-Fudge of android dev forums:====http://www.xda-developers.com/http://www.anddev.org/http://www.rbgrn.net/====Getting started with games, kind of useful====http://www.rbgrn.net/content/54-getting-started-android-game-development====Gaming 101, apparently this is the shit. Ne 阅读全文
posted @ 2012-04-11 23:31 pandans 阅读(279) 评论(0) 推荐(0)
摘要: 可以以左声道或者右声道来播放音频文件:import android.app.Activity;import android.os.Bundle;import android.view.View;import android.widget.Button;import android.widget.TextView;import android.media.MediaPlayer;import android.media.AudioManager;import android.media.AudioTrack;import android.media.AudioFormat;public clas 阅读全文
posted @ 2012-04-10 13:12 pandans 阅读(536) 评论(0) 推荐(0)
摘要: 也许很多人使用ContentProvider 的时候可能会遇到 notify无法刷新UI的问题。。。。其实诀窍在于 setNotificationUri比如我们一个query语句,想要在insert的时候调用的notifychange刷新,则需要在query 得到的cursor 中设置cursor.setNotificationUri(Uri, null); 阅读全文
posted @ 2012-02-22 12:02 pandans 阅读(283) 评论(0) 推荐(0)
摘要: TextMate下载地址https://skydrive.live.com/#cid=8461178113D621A1&id=8461178113D621A1%21109sudocd /Applications/TextMate.app/Contents/SharedSupport/Bundlessvn co http://svn.textmate.org/trunk/Bundles/Erlang.tmbundle完成后需要重新打开textmate,再打开erlang源码就可以看到效果了 阅读全文
posted @ 2012-02-05 23:12 pandans 阅读(244) 评论(0) 推荐(0)
摘要: package com.leepood.gifmaker;import android.graphics.Bitmap;import android.util.Log;public class GifUtil { private final String TAG=this.getClass().getName(); static { System.loadLibrary("gifflen"); } /** * Init the gif file * @param gifName name * @param w width * @param h height * @param 阅读全文
posted @ 2012-02-02 11:22 pandans 阅读(686) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页