Fork me on GitHub
摘要: android(电话拨号器)加载布局文件1.setContentView(R.layout.activity_main);2.找到按钮Button bt_dail = (Button) this.findViewById(R.id.bt_dail);3.查找文本et_number = (EditTe... 阅读全文
posted @ 2015-08-24 21:44 淡无心 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 1.多态:父类型的引用可以指向子类型的对象。2.Parent p = new child();当使用多态方式调用方法时,首先检查父类中是否有sing()方法,如果没有则编译错误;如果有,再去调用子类的sing()方法。3.一共有两种类型的强制类型转换: a).向上转型:不需要显示指定。 b).向下转... 阅读全文
posted @ 2015-08-24 16:39 淡无心 阅读(217) 评论(0) 推荐(0) 编辑