I created a customWidget which extends Text.also i assigned some lengthy string to the text filed.But its not scrolling.!
public class MessageBarWidget extends Text {
public static final String MESSAGEBAR_WIDGET_TAG = "messagebar";
public MessageBarWidget() {
super(MESSAGEBAR_WIDGET_TAG);
}
public TextWidget setText(String text) {
return super.setText(text);
}
}
and the xml file...
<screen style="align:center;" title="sample">
<screenTopBar><picture src="icon.gif" style="layout-data:sld(left,-1,-1)"/></screenTopBar>
<container>
<container>
<map/>
</container>
<container>
<messagebar text="0123456789 qwertyuiop asdfghjkl zxcvbnm"/><!--custom-->
</container>
<container style="layout:tablelayout;gap:8 8">
<button onAction="action1" >button1</button>
<button onAction="action2" >button2</button>
<button onAction="action3" >button3</button>
<button onAction="action4" >button4</button>
</container>
</container>
<screenFirstMenu onAction="exit">Exit</screenFirstMenu>
<screenSecondMenu>
More...
<menuPopup><menuItem onAction="about">About</menuItem>
<menuItem onAction="exitConfirm">Exit</menuItem>
</menuPopup>
</screenSecondMenu>
</screen>