摘要:
from: http://stackoverflow.com/a/4725039There are two seemingly similar functions that take a parameter kSystemSoundID_Vibrate:1)AudioServicesPlayAlertSound(kSystemSoundID_Vibrate);2)AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);Both the functions vibrate the iPhone. But when you use the firs 阅读全文
摘要:
//获得文件路径NSBundle *bundle = [NSBundle mainBundle];NSURL *plistURL = [bundle URLForResource:@"filename" withExtension:@"plist"];//得到数据NSDictionary *dictionary = [NSDictionary dictionaryWithContentsOfURL:plistURL]; 阅读全文
摘要:
选中主容器view,View -> Utilities -> show identity inspector,右上角 Custom Class, 选择UIControl,此时,view已经可以绑定IBAction了,再选择tab7,即show Connections inspector, 拖动某事件后面的圆环到File's Owner,与已写入事件进行绑定。 阅读全文
摘要:
ConstantsUILineBreakModeOptions for wrapping and truncating text.typedef enum { UILineBreakModeWordWrap = 0, UILineBreakModeCharacterWrap, UILineBreakModeClip, UILineBreakModeHeadTruncation, UILineBreakModeTailTruncation, UILineBreakModeMiddleTruncation,} UILineBreakMode;ConstantsUILineB... 阅读全文
摘要:
修复前提,你到UBUNTU可以联网,否则只能卸载,不能安装1.sudo apt-get remove vim-common2.sudo apt-get install vimkadmin@ubuntu:~$ sudo apt-get remove vim-common[sudo] password for kadmin: 正在读取软件包列表... 完成正在分析软件包的依赖关系树 正在读取状态信息... 完成 下列软件包将被【卸载】: ubuntu-minimal vim-common vim-tiny升级了 0 个软件包,新安装了 0 个软件包,要卸载 3 个软件包,有 0 个软件包未被升级。 阅读全文
摘要:
在eclipse中,compiler 都得设置到1.6。这包括preference->java->compiler 下要改成1.6, 同时,project里的build path 里jdk 也得改成1.6。 这主要是针对同时装了1.5, 1.6,而default is 1.5这种情况的。 阅读全文
摘要:
关键方法:RelativeLayout.LayoutParams.addRule();对齐方式:ALIGN_BOTTOM、ALIGN_LEFT、ALIGN_RIGHT、 ALIGN_TOP与父组件对齐方式:ALIGN_WITH_PARENT_BOTTOM、ALIGN_WITH_PARENT_LEFT、ALIGN_WITH_PARENT_RIGHT、ALIGN_WITH_PARENT_TOP居中:CENTER_HORIZONTAL、CENTER_IN_PARENT、CENTER_VERTICAL。 方位:POSITION_ABOVE 、POSITION_BELOW 、 POSITION_TO_L 阅读全文
摘要:
获取视频文件: 1 ContentResolver contentResolver = mContext.getContentResolver(); 2 String[] projection = new String[]{MediaStore.Video.Media.TITLE}; 3 Cursor cursor = contentResolver.query(MediaStore.Video.Media.EXTERNAL_CONTENT_URI, projection, 4 null, null, Media... 阅读全文
摘要:
1 7 8 重点在于XxxLayout默认的android:clickable="false",所以无法获取点击事件 阅读全文
摘要:
Edit多行设置,要把Edit的Max和Min属性修改,令Max-Min>2(其实Max表示最多多少行,Min表示最少多少行)。然后set字符串的时候,用数字"10"作换行符(因为换行符的ASCII码是10)。代码如下:str1 = ['第一行', 10];str2 = ['第二行', 10];str3 = ['第三行', 10];str4 = '没有了';str = [str1, str2, str3, str4];set(handles.editResult, 'string', st 阅读全文