码迷,mamicode.com
首页 >  
搜索关键字:choice    ( 840个结果
SimpleAdapter的用法
学习listView的时候,按照例子设定item的布局为系统提供的simple_list_item_single_choice.xml@frameworks/base/core/res/res/layout/ 加上SimpleAdapter,感觉很爽,什么都不用写直接就用了,然后我就自己定义了一个布...
分类:其他好文   时间:2015-01-18 22:30:34    阅读次数:534
JavaSE 项目事件类(ItemEvent)
{相关信息}项目事件类(ItemEvent)是指某一个项目被选定、取消的语义事件。选择 CheckBox、ComboBox、List 、Choice等组件的时候将产生项目事件。使用项目事件必须给组件添加一个实现ItemListener 接口的事件处理器,该接口的方法如下:void itemState...
分类:编程语言   时间:2015-01-08 13:15:28    阅读次数:223
ajax 获取checkbox的值并提交
$('.but_delet_choice').click(function(){ //获取全选之外的checkbox var $check_boxes = $('input[type=checkbox][checked=checked][id!=check_all_box]')...
分类:Web程序   时间:2015-01-06 22:58:40    阅读次数:230
iOS 按钮设置
设置按钮为不可按:setEnable [button setEnable:NO]; 设置变灰:setAlpha [button setAlpha:0.4]; 设置按钮图像:setImage [button setImage:[UIImage imageNamed:@"choice"] forState:UIControlStateNormal]; 设置按钮标题:setTit...
分类:移动开发   时间:2015-01-06 20:11:42    阅读次数:165
svcutil 生成代理类时的问题
如果有这个的xsd, group内嵌choice的结构: 使用svcutil 生成后的结果是:public class CreateType{ int NameID string Name}因为是choice 类型,这个结果显然不能表示choice的特点,bug?解决问题:生成前,使用xsl...
分类:其他好文   时间:2014-12-26 18:33:11    阅读次数:183
Java Me-List控件的用法案例
/** * Java Me-List控件的用法案例 */package com.xushouwei.cn;import java.io.IOException;import javax.microedition.lcdui.Choice;import javax.microedition.lcdui...
分类:编程语言   时间:2014-12-25 09:49:37    阅读次数:162
python 生成随机密码
importrandom defkeygen(num): seed="1234567890abcdefghi-+!@#$%^&*jklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" salt_list=[] foriinrange(num): salt_list.append(random.choice(seed))#从seed中随机取出,添加到列表中 salt=‘‘.join(salt_list) printsalt keygen(8)..
分类:编程语言   时间:2014-12-17 19:03:50    阅读次数:193
菜单技术
#include #include char get_choice(void); char get_first(void); int get_int(void); void count(void); int main(void) { int choice; while((choice = get_choice())!='q') { switch(c...
分类:其他好文   时间:2014-12-16 13:38:22    阅读次数:170
HDU_1098 Ignatius's puzzle[规律题]
Ignatius's puzzle Problem Description Ignatius is poor at math,he falls across a puzzle problem,so he has no choice but to appeal to Eddy. this problem describes that:f(x)=5*x^13+13*x^5+k*a*x,inpu...
分类:其他好文   时间:2014-12-11 20:59:40    阅读次数:294
5个Linux发行版的对比
Ubuntu Whether you are a new user planning to get your first computer, or someone migrating from Windows or Mac OS X, Ubuntu should be your first choice. It’s extremely easy to install and manage; ...
分类:系统相关   时间:2014-12-02 10:36:38    阅读次数:200
840条   上一页 1 ... 76 77 78 79 80 ... 84 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!