码迷,mamicode.com
首页 > 2014年12月07日 > 全部分享
android之启动桌面activity
主页面布局:layout\activity_main.xml<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"><Buttonandroid:id="@+id/btnHome"android..
分类:移动开发   时间:2014-12-07 06:50:00    阅读次数:188
android之ListView和adapter配合显示图片和文字列表
listView页面布局:layout/activity_main.xml:<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="ho..
分类:移动开发   时间:2014-12-07 06:48:54    阅读次数:174
android之simpleAdaper应用
listView页面布局:layout/activity_main.xml:<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:paddingBottom..
分类:移动开发   时间:2014-12-07 06:49:11    阅读次数:233
android之ArrayAdaper应用
listView页面布局:layout/activity_main.xml:<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:paddingBottom..
分类:移动开发   时间:2014-12-07 06:47:49    阅读次数:157
android之ArrayAdaper之Spinner
listView页面布局:layout/activity_main.xml:<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="ve..
分类:移动开发   时间:2014-12-07 06:49:29    阅读次数:172
android之GridView和Gallery
GridView:/activity_main.xml<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"><GridViewandroid:id="@+id/gvG..
分类:移动开发   时间:2014-12-07 06:46:49    阅读次数:294
andriod之对话框--标准对话框、列表对话框、自定义对话框
listView页面布局:layout/activity_main.xml:<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="ve..
分类:其他好文   时间:2014-12-07 06:47:50    阅读次数:186
shell基础及流程控制语句之一while循环
前面写过if条件判断,一般在写shell脚本时可能会用到死循环这时就需要while语句了,它是做死循环最好的方法,在讲while循环之前需要讲文件测试,因为在写脚本时经常会用到。文件测试:-e$file:判断是否存在如果存在则为真,不存在则为假-f$file:判断是否存在并且为普通文件,存..
分类:系统相关   时间:2014-12-07 06:48:11    阅读次数:278
android之listView缓存机制
activity_main.xml:<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:paddingBottom="@dimen/activity_vertic..
分类:移动开发   时间:2014-12-07 06:48:35    阅读次数:286
android之listView之增删改查
主显示布局以及代码:activity_main.xml:<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"><ListViewandroid:i..
分类:移动开发   时间:2014-12-07 06:48:35    阅读次数:309
线程通信之handle用法
主显示布局以及代码:activity_main.xml:<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertic..
分类:编程语言   时间:2014-12-07 06:47:07    阅读次数:182
线程通信之looper之用法--主线程和工作线程
说明:(之前只用handle是因为主线程默认就加上Looper.prepare()和Looper.loop()的。所以主线程可以通过handle收发信息,但是如果在thread里面的话,就是工作线程,工作线程的话,默认是没有加上那两段代码的,所以要手动加上,然后再通过handle.sendMessage()发送信息到工作线..
分类:编程语言   时间:2014-12-07 06:48:14    阅读次数:233
14章类型信息-之类型转换前先做检查--之instanceof
instanceof用法:对于instanceof有比较严格的限制,只可将其与命名类型进行比较,而不能与class对象做比较。理解:这里所说的就是像if(petinstanceofMutt)counter.count("Mutt");这里的Mutt,不能用对象比较,只能用类名,比如(Muttmutt=newMutt()然后用mutt)或者Mutt.class..
分类:其他好文   时间:2014-12-07 06:48:36    阅读次数:282
14章类型信息之使用类字面常量
14章类型信息-之类型转换前先做检查--之使用类字面常量--类名.class--以及动态instanceof(isInstance方法)----递归计数(计算各个类的个数)实例代码:实体类父类://:typeinfo/pets/Individual.javapackagetypeinfo.pets;publicclassIndividualimplementsComparable<Indivi..
分类:其他好文   时间:2014-12-07 06:46:24    阅读次数:259
《Go语言编程》calc.go的错误
最近看由人民邮电出版社许式伟吕桂华等编著《Go语言编程》【第1章初识Go语言】【1.5工程管理】时,发现了示例代码calc.go有几处错误,args:=os.Args数组变量args[0]代表程序自身,3个if语句len(args)条件判断右值也都小了1,按照书本编写代码运行时将会一直执行匿名函数Usage()..
分类:编程语言   时间:2014-12-07 06:46:25    阅读次数:175
shell基础及流程控制语句之一case判断
上篇博文介绍了while语句,while的基本使用以及死循环还有文件测试方法等以上内容,还是那句话如果想全部掌握则需要多次练习。这篇博文来介绍一下case语句,精简的if语句,因为使用case写出来的判断会比if短许多。case语法格式:case变量引用in变量值)执行语句;;变量的第二个值..
分类:系统相关   时间:2014-12-07 06:45:52    阅读次数:236
Windows 10预览版体验心得
对Windows系统一直比较关注。Windows10预览版刚出来的时候就下载了试用。总体感觉风格上比较像Windows8.1,像是Windows8的改进版。我感受到的一些变化。1、开始菜单,像Windows8.1虽然有了开始菜单按钮,但是点击开始菜单按钮,还是会跳转到Metro界面去。到Windows10的时..
分类:Windows程序   时间:2014-12-07 06:48:10    阅读次数:237
1151条   上一页 1 ... 54 55 56 57 58 59 60 ... 68 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!