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 得到。

这两天在看SDK EXAMPLE的LISTBOX例子,有一些心得与大家分享,有什么错误请大家指出。在例子中就用了2个LISTBOX的类,一个是CEikColumnListBox;另一个是CEikFormattedCellListBox。它们分别对应SINGLE和DOUBLE两种表现形式。下面用代码来说明一下。

[Copy to clipboard]

CODE:

CEikColumnListBox* iColListBox;

CEikFormattedCellListBox* iForListBox;

iColListBox = new (ELeave) CAknSingleStyleListBox();

iForListBox = new (ELeave) CAknDoubleGraphicStyleListBox();

iColListBox->SetContainerWindowL( *this );

iForListBox->SetContainerWindowL( *this );

//从资源文件中生成LISTBOX

TResourceReader reader;

CEikonEnv::Static()->CreateResourceReaderLC( reader, R_TEST_SINGLE);

iColListBox->ConstructFromResourceL( reader );

CEikonEnv::Static()->CreateResourceReaderLC( reader, R_TEST_DOUBLE);

iForListBox->ConstructFromResourceL( reader );

//设置SCROLLBAR

iColListBox->CreateScrollBarFrameL( ETrue );

iColListBox->ScrollBarFrame()->SetScrollBarVisibilityL(

CEikScrollBarFrame::EOff, CEikScrollBarFrame::EAuto );

iForListBox->CreateScrollBarFrameL( ETrue );

iForListBox->ScrollBarFrame()->SetScrollBarVisibilityL(

CEikScrollBarFrame::EOff, CEikScrollBarFrame::EAuto );

//适合窗口大小

iColListBox->SetRect(Rect());

iForListBox->SetRect(Rect());

//激活

iColListBox->ActivateL();

iForListBox->ActivateL();

//资源.RSS

RESOURCE LISTBOX r_text_single

{

// 给定要生成LISTBOX的ITEMS

array_id = r_array_single;

// LISTBOX的标示

flags = EAknListBoxSelectionList;

}

RESOURCE LISTBOX r_text_double

{

array_id = r_array_double;

flags = EAknListBoxSelectionList;

}

//请注意r_array_single和r_array_double的不同。

// \t 就是分割符。

// "0\tAAAAAA\taaaaaa"最前的0表示在*.mbm中序号为0的图片加到LISTBOX的ITEM前

RESOURCE ARRAY r_array_single

{

items =

{

LBUF

{

txt = " \taaaaaa";

},

LBUF

{

txt = " \tbbbbbb";

}

};

}

RESOURCE ARRAY r_array_double

{

items =

{

LBUF

{

txt = "0\tAAAAAA\taaaaaa";

},

LBUF

{

txt = "0\tBBBBBB\tbbbbbb";

}

};

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值