Я новичок в BB dev. Я создаю CustomListField, и когда я щелкаю по строке, цвет фона этой строки должен измениться, и должен появиться новый экран (все готово!).
Может ли кто-нибудь помочь мне сделать это?
ТНХ
Ниже приведен код:
protected boolean navigationClick(int status, int time)
{Field field = this.getLeafFieldWithFocus();
if(field instanceof ListField)
{
// listValues is String[] where you store your list elements.
// listField is the ListField instance you are using
UiApplication.getUiApplication().pushScreen(new ReadMsgScreen());
int index= getIndex();
if(index== this.getSelectedIndex())
{
**// I think the code to change the row's background color must be set here!**
}
return true;
}
return super.navigationClick(status, time);
}