Questions tagged [labelfield]
33 questions
1
vote
3 answers
Blackberry Java: TextField *without* the caret?
I want a non-editable TextField (or a subclass) that doesn't even have the caret displayed. Alternatively, I want a multiline LabelField. Is any of these possible?

noamtm
- 12,435
- 15
- 71
- 107
1
vote
1 answer
multi format in LabelField - BlackBerry
I am placing text in a LabelField as multi-line. This is the method I am calling:
public void setFirstName(String fvalue,String lvalue,String date,String lastStatus)
{
_fnameLabel.setText(fvalue+"…

Sarah
- 1,895
- 2
- 21
- 39
0
votes
1 answer
Blackberry video with text display prob
I need a video screen and under the video play, I want to show two lines of text like below.
For that I am using following code.
public final class PlayVideoScreen extends MainScreen {
private Player player;
private VideoControl…

dev_android
- 8,698
- 22
- 91
- 148
0
votes
1 answer
LabelField different behavior between OS 4.5 and 6.0
In my application i had to implement custom component that is extended from VerticalFieldManager and this manager holds Rows which are HorizontalFieldManager.
The problem is in OS 4.5 LabelField in the left shows only one line of text. Here is the…

Ahmet Gulden
- 2,063
- 2
- 15
- 23
0
votes
1 answer
Title on mapfieldScreen in blackeberry is not visible
I am creating a map app. in which i am using mapfield. on the MapFieldScreen I am trying to add Title and also creating tabs but these two things are not visible. instead there is just gray color on these two places..
Here is my code.
class…

Swati
- 1,179
- 9
- 28
0
votes
1 answer
BlackBerry API 6.0. How to make a LabelField wider (to make it stop enforcing new lines)?
I have a class which extends LabelField to set font and color.
I have 2 such custom LabelFields and they display some strings of text. Those Strings are rather short, about a dozen symbols long.
The problem is that these custom LabelFields enforce…

Dmitry
- 161
- 1
- 1
- 6
0
votes
1 answer
button with icon and title
in my screen , i want to create/add button with an icon and under this icon i want to write the title of this button
like this picture

rouge
- 3
- 2
0
votes
1 answer
Linking a phone number on Blackberry LabelField
Is there a way to make text that contains a phone number show up as a clickable link using the Blackberry LabelField?
Example:
"Call me at 1234567" - the 1234567 would be a link that could be used to launch the phone.
This is easy to do on the…

Brett
- 167
- 2
- 7
0
votes
1 answer
Color Change LabelField
I have a vertical field manager, inside it are numerous horizontal field manager. in each horizontal field manager there are 1 bitmapfield and another verticalfield manager ( 3 label fields).
I was able to change the background color(GRADIENT) of…

BigDaddy
- 1
- 1
0
votes
1 answer
Blackberry Custom LabelField
How to create a custom Label field that works similar to default LabelField
issues : it should be able to take large texts and should be able to display them in different lines if the length exceeds the screen width.

Vivek Giri
- 465
- 1
- 6
- 21
0
votes
1 answer
How to insert trademark symbol in LabelField on Blackberry
I'm trying to figure out how to add a trademark ™ symbol on a LabelField in Blackberry API v5.0. Can anyone please help me?
Thx in advance.
0
votes
1 answer
Flex DropdownList does not show the correct values
I have a Flex Spark dropdownList in which I need to show the Provider FirstName,LastName:

Harry
- 546
- 6
- 22
- 50
0
votes
1 answer
labelField asking
hi guys i have xml database how to call phone and display in label ?
i already have label Field but i want to call phone in side the Field
how ?
this my cod

Naser
- 1
- 1
0
votes
2 answers
Get the "real" width of LabelField (BlackBerry)
If I new a LabelField like this:
LabelField label = new LabelField("long longgggg long text");
it shows:
-----------------------
| long longggg |
| long text |
-----------------------
if I use label.getWidth(), it gives the width…

Kevin
- 1,147
- 11
- 21
0
votes
1 answer
Why navigationMovement for FOCUSABLE LabeField is bypassed in Blackberry?
I have a LabelField whith style FOCUSABLE and many focusable Fields after it, and I overrided the navigationMovement method of the LabelField. The problem is that: the code never enters in the new implementation of navigationMovement but the focus…

Ashraf Bashir
- 9,686
- 15
- 57
- 82