本页文章导读:
▪判断JAR包是否在模拟器下运行 判断JAR包是否在模拟器上运行
/**
* @author 小阿哥
* @return boolean 判断该JAR包是否在模拟器上运行. 如果返回true,说明在模拟器上运行.
**/
public static boolean platformIsSimulator() {
b.........
▪ 怎么设置摸拟器横屏显示 如何设置摸拟器横屏显示
在开发过程中,有时要横屏测试,按ctrl + F12,就可以了,恢复也是按ctrl + F12
......
▪ 写上关于popwindow 写下关于popwindow
主要是代码,参考了http://blog.csdn.net/Android_Tutor/archive/2010/05/10/5576533.aspx
popwindow.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android.........
[1]判断JAR包是否在模拟器下运行
来源: 互联网 发布时间: 2014-02-18
判断JAR包是否在模拟器上运行
/** * @author 小阿哥 * @return boolean 判断该JAR包是否在模拟器上运行. 如果返回true,说明在模拟器上运行. **/ public static boolean platformIsSimulator() { boolean isSimulator = false; System.out.println("PlatformName:" + System.getProperty("microedition.platform")); try { Class.forName("emulator.Emulator"); isSimulator = true; System.out.println("说明是在KE上运行的。。"); } catch (Exception ex) { isSimulator = false; } if (!isSimulator) { long totalMemory = Runtime.getRuntime().totalMemory(); System.out.println("totalMemory:" + totalMemory); if (totalMemory >= 2 * 1024 * 1024) { isSimulator=true; System.out.println("电脑上运行的。。。"); } } return isSimulator; }
[2] 怎么设置摸拟器横屏显示
来源: 互联网 发布时间: 2014-02-18
如何设置摸拟器横屏显示
在开发过程中,有时要横屏测试,按ctrl + F12,就可以了,恢复也是按ctrl + F12
[3] 写上关于popwindow
来源: 互联网 发布时间: 2014-02-18
写下关于popwindow
主要是代码,参考了http://blog.csdn.net/Android_Tutor/archive/2010/05/10/5576533.aspx
popwindow.xml
main.xml
Activity01.java
记得要dismiss(),否则返回会报错,难点在要触发popwindow上的事件,就必须是这个popwindow下来findviewbyid,否则就报错
本来这个东西的最初目的是写动态背景,但失败了,蛮多限制。贴上代码,以后可能需要。
还一些参考文章:http://www.cmd100.com/bbs/thread-111-1-1.html
http://mobile.51cto.com/android-254829.htm
最新技术文章: