M Rijalul Kahfi
M Rijalul Kahfi

Reputation: 1490

Spacing between label and editfield in Blackberry

Hi i just have an EditField instance that i created this way:

EditField editField = new EditField("Name", "");

But it shows that there is no space between the label "Name" and the edit Field (fill form). I want to define a specific space between them but i wonder how to do it.

Upvotes: -2

Views: 150

Answers (1)

Raj Kamal
Raj Kamal

Reputation: 149

just give how much space u want in "name" as "name " like this

EditField editField = new EditField("Name     : ", "");

Upvotes: 2

Related Questions