码迷,mamicode.com
首页 >  
搜索关键字:view    ( 37068个结果
如何更新UI才能不出异常呢?SDK告诉我们,有以下4种方式可以从其它线程访问UI线程
Activity.runOnUiThread(Runnable)·View.post(Runnable)·View.postDelayed(Runnable, long)·Handler
分类:编程语言   时间:2014-05-21 19:37:55    阅读次数:285
asp.net MVC 4.0 View回顾——布局页与分部页
asp.net MVC4.0中总结 视图里加载部分视图几种方法@RenderPage()但它不能使用 原来视图的 Model 和 ViewData ,只能通过参数来传递。1 @RenderPage("~/Shared/Component/Dialog.cshtml", new { title = "...
分类:Web程序   时间:2014-05-21 17:47:46    阅读次数:380
41-50(UIApplication和delegate,UIApplicationMain,UIWindow,程序启动的完整过程,控制器view的延迟加载)
41.UIApplication和delegate42.UIPickerView43.UIDatePicker44.程序启动的完整过程45.UIApplicationMain46.UIWindow47.如何创建一个控制器48.控制器view的延迟加载49.多控制器50.UINavigationCon...
分类:移动开发   时间:2014-05-21 17:44:38    阅读次数:327
2C01-View-Layout-Animation-Grid-Fade
介绍一个grid layout 顺序显示的代码 LayoutAnimation1.java /* * Copyright (C) 2007 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use th...
分类:其他好文   时间:2014-05-21 16:58:47    阅读次数:214
windows上Python开发--3.Django的基础知识
Django的基础知识,包含urls,view和form。已经model的建立。实际的代码案例...
分类:编程语言   时间:2014-05-21 15:08:40    阅读次数:321
SurfaceView的用法----实现刚进入程序时渐变场景效果
SurfaceView是View的继承类,所以也是一个View。可以控制Surface的格式和尺寸。可以通过SurfaceHolder接口访问这个surface,getHolder()方法可以得到这个接口。surfaceview变得可见时,surface被创建;surfaceview隐藏前,surface被销毁。...
分类:其他好文   时间:2014-05-21 10:39:41    阅读次数:291
2C02-View-Layout-Animation-list-Cascade
描述list layout item有上倒下依次显示的代码实现形式 LayoutAnimation2.java /* * Copyright (C) 2007 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may no...
分类:其他好文   时间:2014-05-21 09:02:15    阅读次数:250
2C03-View-Layout-Animation-list-Reverse-Order
介绍list  item倒序显示 LayoutAnimation3.java /* * Copyright (C) 2007 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file e...
分类:其他好文   时间:2014-05-21 08:25:44    阅读次数:278
编程之美之2.5 寻找最大的K个数
【题目】 有很多无序的数,从中找出最大的K个数。假定他们都不相等。 【解法一】 如果数据不是很多,例如在几千个左右,我们可以排一下序,从中找出最大的K个数。排序可以选择快速排序或者堆排序 [cpp] view plaincopy #include   #include   int cmp(const void *a,const ...
分类:其他好文   时间:2014-05-21 07:30:07    阅读次数:234
算法之大数问题
大数相加 [cpp] view plaincopy #include   #include      char a[10001],b[10001],sum[10002];      int BigIntegerAdd(){       //两个数的长度       int lena = strlen(a);       int l...
分类:其他好文   时间:2014-05-21 06:32:32    阅读次数:361
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!