首 页技术文章资源下载WAP论坛用户中心繁體中文
设为首页
加入收藏
联系我们
您当前的位置:中国WAP技术门户网站 -> 技术文章 -> 手机编程 -> Symbian -> 程序开发 -> 文章内容 退出登录 用户管理
热门文章
· [转载] wap2.0技巧篇
· [转载] WAP 2.0简介
· WML语言基础(WAP建站...
· [转载] WAP/WEB网站建设
· JSP技术在WAP开发中...
· [图文] WML语言基础(WAP建站...
· WML语言基础(WAP建站...
· [转载] 《女性安全期测算》...
· [转载] 跟你详说WAP
· asp.net开发wap程序...
相关文章
· Symbian OS 精要
· Symbian编程VC开发环...
· Symbian下用C++实现...
· 用C++实现的访问Sym...
· 个简单的Symbian OS...
· Symbian 基本数据类...
· [图文] Symbian概述
· Symbian内存管理
· [图文] 使用Carbide.vs与VS...
· [图文] Nokia官方培训 Foru...
 
SymbianOS Series 60学习笔记二:ListBox控件
文章作者:cn_fish     [ 收藏此页到365Fav ]
文章来源:http://blog.csdn.net     [ 收藏此页到365Key ]
发布时间:2005-12-19 1:59:10 减小字体
文章编辑:atck 增大字体

终于对Series 60的ListBox控件有了一个比较清晰的了解
说真的这几天看这样的代码真有点赶鸭子上架
我在放ListBox控件的容器类中声明了一个CEikColumnListBox* _listbox
在其ConstructL函数中构造一个CEikColumnListBox的实例
_listBox = new(ELeave) CAknSingleStyleListBox;
_listBox->ConstructL(this);

_listBox->SetContainerWindowL(*this);
_listBox->CreateScrollBarFrameL(ETrue);
_listBox->ScrollBarFrame()->SetScrollBarVisibilityL(CEikScrollBarFrame::EOn,CEikScrollBarFrame::EAuto);
因为需要处理listbox的Keypress事件
_listBox->SetListBoxObserver(this);

所以这里的容器类的实例必须扩展public?MEikListBoxObserver
头文件必须包含eiklbo.h

当然需要实现MEikListBoxObserver中的虚函数
void CTestListContainer::HandleListBoxEventL(CEikListBox* aListBox,TListBoxEvent aEventType)
这里处理KeyPress事件
需要aEventType==EEventEnterKeyPressed
如果需要知道选中的是某一个Item
TInt number(_listBox->CurrentItemIndex());
number是从0开始的一直到ListBox的Item总数减一的整数

上下移动选择的处理是在函数
TKeyResponse CTestListContainer::OfferKeyEventL(
const TKeyEvent& aKeyEvent,TEventCode aType){
if (aType!=EEventKey)
{return EKeyWasNotConsumed;}
f (_listBox){
return _listBox->OfferKeyEventL(aKeyEvent, aType);
}
else {return EKeyWasNotConsumed;}
}
这个函数主要是处理按键事件,它并不是专门针对ListBox,当然在这里是处理ListBox上下移动按键。

ListBox的Item可以通过动态添加和资源文件生成
动态添加
TBuf<32>item;

_LIT(KItemName1,"234234234234");
//这里有个风格格式
item.Format(_L(" %S "),&KItemName1);
listBoxItems->AppendL(item);

_LIT(KItemName2,"rtetertet");
item.Format(_L(" %S "),??&KItemName2);
listBoxItems->AppendL(item);

_LIT(KItemName3,"adsfasfasdf");
item.Format(_L(" %S "),??&KItemName3);
listBoxItems->AppendL(item);

_listBox->HandleItemAdditionL();
_listBox->SetCurrentItemIndexAndDraw(listBoxItems->Count()-1);

_listBox->ActivateL();

这里是对ListBox框的一些初步了解
第一感觉在Symbian下因为不是可视化编程,所以添加控件比较麻烦
但Symbian的程序结构的确是非常合理
而且我很高兴它也是基于MVC的

当然列表框也是可以加图标的

很简单
new了一个CAknSingleLargeStyleListBox的列表框
_listBox=new (ELeave)CAknSingleLargeStyleListBox;

建立一个数组来保存ico信息
CAknIconArray* iconList=new (ELeave)CAknIconArray(10);
CleanupStack::PushL(iconList);
把图标信息添加到数组
iconList->AppendL(iEikonEnv->CreateIconL(KIconsFilename, EMbmTestlistGolgo2,EMbmTestlistGolgo2m));
加完了不要忘了CleanupStack::Pop();

EMbmTestlistGolgo2和EMbmTestlistGolgo2m是在.mbg里定义的
把一些位图放到一个.mbm文件里访问,每个位图资源都有一个ID
当然把位图放到.mbm要在.mmp文件里定义

START BITMAP testlist.mbm
TARGETPATH systemapps estlist
HEADER
SOURCEPATH   ..\bmp
SOURCE   C12 golgo2.bmp
SOURCE  C12  golgo2m.bmp
END

给listbox加上图标
我用的是
_listBox->ItemDrawer()->ColumnData()->SetIconArray(iconList);
另外对于CEikFormattedCellListBox扩展的ListBox
_listBox->ItemDrawer()->FormattedCellData()->SetIconArray();
_listBox->ItemDrawer()->FormattedCellData()->SetSubCellAlignmentL(2,CGraphicsContext::ELeft);

当然最后添加item的时候要注意格式
TBuf<32>item;
_LIT(KItemName1,"234234234234");
item.Format(_L("%d\t%S "),0,&KItemName1);
listBoxItems->AppendL(item);

在SymbianOS(series 60平台) 下有很多格式的ListBox,更详细的信息可以在

http://perso.wanadoo.fr/klisa/3650/ListBox/page01.html 得到。

 
[] [返回上一页] [打 印] [收 藏]
∷相关文章评论∷    (评论内容只代表网友观点,与本站立场无关!) [更多评论...]

关于我们  |   版权声明  |   广告服务  |   帮助中心  |   联系我们  |   网站地图  |   友情链接 
Copyright © 2004-2005 Wapzj.Com. All Rights Reserved .
粤ICP备05000730号 在线人数: