摘要:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.or 阅读全文
摘要:
JS中如何获取元素 通过ID名称来获取元素:document.getElementById('元素的ID') 事件:鼠标事件、键盘事件、系统事件、表单事件、自定义事件.... onclick //点击事件 onmouseover //鼠标移入 onmouseout //鼠标离开 onmousedwn 阅读全文
摘要:
1.Spinner(下拉列表框) 1.1下拉列表框的配置方式 a.资源文件配置 第一步:在string.xml配置 <string-array name="ctiy"> <item>赫山区</item> </string-array> 第二步:指定资源 android:entries="@array 阅读全文
摘要:
1.开发Activity步骤第一步:写一个类继承Activity第二步:重写oncreate方法第三步:在主配置文件中注册activity <activity android:name=".类名" android:label="@string/app_name"> <intent-filter> < 阅读全文
摘要:
1.SDK:软件开发包2.android体系结构:应用程序层;应用程序框架;函数库;安卓运行时;Linnx内核3.eclipse:是开发安卓应用的一个工具,是myElipse的一个插件4.SDK:开发安卓程序的软件开发包5.ADT:安卓开发工具6.AVD:安卓的虚拟设备7.DDMS:调试监视服务(调 阅读全文
摘要:
Reader/Writer(字符流的输入和输出流,只是相对于java文件而言) (1)能够用文本编辑器打开的文件,且不乱码就是字符文件可以用字符流操作(2)而打开文件是乱码,则是字节文件。 字符输入流Reader(FileReader是它的子类) FileReader/BufferedReader类 阅读全文