上一页 1 ··· 5 6 7 8 9 10 11 下一页
摘要: 打印出所有的"水仙花数",所谓"水仙花数"是指一个三位数,其各位数字立方和等于该数本身。例如: 153是一个"水仙花数",因为153=1的三次方+5的三次方+3的三次方。 1.程序分析:利用for循环控制100-999个数,每个数分解出个位,十位,百位。 run:水仙花的数据:153 百位数是1 十 阅读全文
posted @ 2016-04-07 16:56 风马一族 阅读(271) 评论(0) 推荐(0)
摘要: Android 从命令行界面获取手机信息 1: cmd 打开命令行界面 2:adb devices 获取与电脑相连的设备,例如:模拟器、真机(手机) (右击“标记”,选择设备名称,点击“Ctrl+C”) 3:adb -s 设备名称 shell 进入设备的Linux模式 (右击“粘贴”,输出设备名称) 阅读全文
posted @ 2016-01-15 20:30 风马一族 阅读(560) 评论(0) 推荐(0)
摘要: Button button = new Button(); Button button = (Button)findViewById(R.id.bt_button);//让按钮显示灰色,失效 button.setEnabled(false); 阅读全文
posted @ 2016-01-11 16:44 风马一族 阅读(132) 评论(0) 推荐(0)
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2016-01-05 14:55 风马一族 阅读(12) 评论(0) 推荐(0)
摘要: Intent intent = new Intent(); intent.setAction("android.intent.action.VIEW");这一段句话。可以调用出系统的分享弹出框 阅读全文
posted @ 2015-12-26 15:19 风马一族 阅读(149) 评论(0) 推荐(0)
摘要: adb wireless 无线调试 adb preferences 首选项 auto start 自动启动 start up automatically whe restart your phone 启动时自动重新启动您的手机 screen always on 屏幕总是在 the screen ne 阅读全文
posted @ 2015-12-25 15:27 风马一族 阅读(371) 评论(0) 推荐(0)
摘要: 气味的组成是否存在基本成分 色彩中不能再分解的基本色称之为原色,原色可以合成其他的颜色,而其他颜色却不能还原出本来的色彩。 我们通常说的三原色,即红、绿、蓝。三原色可以混合出所有的颜色,同时相加为白色。 自然界中存在的颜色,多种多样,无法取一而足。而先人们经历多少岁月,发现了三原色。 并且在美术、工 阅读全文
posted @ 2015-12-24 12:47 风马一族 阅读(453) 评论(0) 推荐(0)
摘要: use same device for future launches 之后运行时,使用相同的设备 Debug type Show this page 调试类型 显示此页 Activate tool window 激活工具窗口 clear log before launch 发射前清除日志 Inst 阅读全文
posted @ 2015-12-12 00:53 风马一族 阅读(235) 评论(0) 推荐(0)
摘要: history math science English art music history math science English art music history math science English art music history math science English art 阅读全文
posted @ 2015-12-11 11:28 风马一族 阅读(142) 评论(0) 推荐(0)
摘要: 使用ContentProvider共享数据详细: http://justsee.iteye.com/blog/936612 阅读全文
posted @ 2015-12-10 22:27 风马一族 阅读(154) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 下一页