2011-04-30 12:21 by Yan YAN(闫妍), 131 visits, 网摘, 收藏, 编辑
摘要:整套安装步骤: 1.安装JDK 2.解压android-sdk_r10-windows.7z 3.设置环境变量 一个是jdk的"path",一个是sdk的tools的"path", 再一个就是新建一个环境变量"android_sdk_home"路径为android-sdk-windows文件夹 4.解压eclipse 5.打开eclipse安装ADT插件 Help --> Install New ...
阅读全文
2011-04-26 14:35 by Yan YAN(闫妍), 185 visits, 网摘, 收藏, 编辑
摘要:Visual Studio LightSwitch 官方地址: http://www.microsoft.com/visualstudio/en-us/lightswitch
阅读全文
2011-04-21 17:41 by Yan YAN(闫妍), 533 visits, 网摘, 收藏, 编辑
摘要:点击按钮跳转到另一个Activity2 button2 = (Button) findViewById(R.id.button2); button2.setOnClickListener(listener2); listener2 = new OnClickListener() { public void onClick(View v) { setTitle("这是在ActivityMai...
阅读全文
2011-04-21 17:11 by Yan YAN(闫妍), 111 visits, 网摘, 收藏, 编辑
摘要:public class ActivityMenu extends Activity { public static final int ITEM0 = Menu.FIRST; public static final int ITEM1 = Menu.FIRST + 1; Button button1; Button button2; /** Called when the acti...
阅读全文
2011-04-17 22:55 by Yan YAN(闫妍), 4659 visits, 网摘, 收藏, 编辑
摘要:到以下连个网址,把smartcam软件下载下来: http://en.sourceforge.jp/projects/sfnet_smartcam/releases/ 手机端 http://en.sourceforge.jp/projects/sfnet_smartcam/downloads/smartcam_windows/SmartCam_v1_4/SmartCam_v1_4.exe/?us...
阅读全文
2011-04-13 20:30 by Yan YAN(闫妍), 1242 visits, 网摘, 收藏, 编辑
摘要:转自:http://hi.baidu.com/347006609/blog/item/7be00a65b22855e1f73654e3.html/cmtid/32f6e21730818b4420a4e9a5 要知道自己的网卡是否支持承载网络,有两种方法: 1.在CMD里用”netsh wlan show drivers“命令(没引号),运行完后会有一行显示”支持的承载网络:是(如果支持显示为:是)...
阅读全文
2011-04-01 15:52 by Yan YAN(闫妍), 343 visits, 网摘, 收藏, 编辑
摘要:因为jdk采用了1.5,所以,必须在设置id属性的时候,设置成为android:id,而不是id,这样就可以避免了该错误 。
阅读全文
2011-04-01 15:00 by Yan YAN(闫妍), 331 visits, 网摘, 收藏, 编辑
摘要:ScrollView一个可以下拉滚动条的视图区域<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content">Button按钮获取并设置事件及委托Button button = (Button) findViewById(R.id.button); button.setOnClickListener(b
阅读全文