当前位置: 编程技术>移动开发
本页文章导读:
▪Ubuntu 装配双jdk 1.5+1.6 Ubuntu 安装双jdk 1.5+1.6
sudo add-apt-repository "deb http://archive.canonical.com/ lucid partner"sudo apt-get updatesudo apt-get install sun-java6-jdksudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu hardy main multiverse"sudo add-.........
▪ UIView 中的控件事件穿透 Passthrough 的兑现 UIView 中的控件事件穿透 Passthrough 的实现
http://unmi.cc/uiview-event-passthrough
......
▪ 在桌面图标右下角显示数字 在桌面图标右上角显示数字
能够在ios桌面的程序icon右上角显示数字(badge number)
- (void)applicationDidEnterBackground:(UIApplication *)application{
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:5].........
[1]Ubuntu 装配双jdk 1.5+1.6
来源: 互联网 发布时间: 2014-02-18
Ubuntu 安装双jdk 1.5+1.6
sudo add-apt-repository "deb http://archive.canonical.com/ lucid partner"
sudo apt-get update
sudo apt-get install sun-java6-jdk
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu hardy main multiverse"
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu
hardy-updates main multiverse"
sudo apt-get update
sudo apt-get install sun-java5-jdk
上述方法只是用于 从来没有安装过jdk并且也没有对jdk进行配置 适合刚装完系统
切换方法
sudo update-alternatives --config java
sudo update-alternatives --config javac
sudo update-alternatives --config javadoc
sudo add-apt-repository "deb http://archive.canonical.com/ lucid partner"
sudo apt-get update
sudo apt-get install sun-java6-jdk
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu hardy main multiverse"
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu
hardy-updates main multiverse"
sudo apt-get update
sudo apt-get install sun-java5-jdk
上述方法只是用于 从来没有安装过jdk并且也没有对jdk进行配置 适合刚装完系统
切换方法
sudo update-alternatives --config java
sudo update-alternatives --config javac
sudo update-alternatives --config javadoc
[2] UIView 中的控件事件穿透 Passthrough 的兑现
来源: 互联网 发布时间: 2014-02-18
UIView 中的控件事件穿透 Passthrough 的实现
http://unmi.cc/uiview-event-passthrough
[3] 在桌面图标右下角显示数字
来源: 互联网 发布时间: 2014-02-18
在桌面图标右上角显示数字
能够在ios桌面的程序icon右上角显示数字(badge number)
- (void)applicationDidEnterBackground:(UIApplication *)application{ [[UIApplication sharedApplication] setApplicationIconBadgeNumber:5]; } //或者使用 [UIApplication sharedApplication].applicationIconBadgeNumber = 3;
最新技术文章: