Hello Everyone,
I'm trying to set text "Sign In" to a button in toolbar but the text doesn't show up. Instead, "..." is drawn. Here is my AVKON_TOOLBAR resource. Kindly suggest what should i do. I don't want to reduce the number of characters in the text. Thank you.
RESOURCE AVKON_TOOLBAR r_rediff_login_view_toolbar
{
flags = KAknToolbarFixed;
items =
{
TBAR_CTRL
{
type = EAknCtButton;
id = ECommand1; // In this example, we are using same set of commands as of used in AppUi:HandleCommandL
control = AVKON_BUTTON
{
flags = KAknButtonSizeFitText;
states =
{
AVKON_BUTTON_STATE
{
txt = "SignIn";
helptxt = "Sign In";
}
};
};
}
};
}



