MultiLine Text With Scroll bar in Hebrew

davidmd

Member
Licensed User
Longtime User
Hi
Please HELP

I need to put in my activity
MultiLine (label) With Scrollview in Hebrew.
Can Not do it
Please Advise ?

Regards!

JD:sign0085:
 

derez

Expert
Licensed User
Longtime User
What exactly is the problem ?
If it is the alignment of the text - try Gravity.Left or Gravity.Right, it seems to be one way in android 2.2 and the other way in 3.0 ...
 
Upvote 0

davidmd

Member
Licensed User
Longtime User
Thanks KLaus
I tried to Use
ScrollView with Label (MultiLines)
I need something simple
I put hight 700 in ScrollView and Label Properties

I use:
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("main")
ScrollView1.Height = Activity.Height - ScrollView1.Top - 10dip
ScrollView1.Width = Activity.Width
ScrollView1.Panel.LoadLayout("main")

Run in Emulator , Bad rsult, It it seem as
limit by Activity area ...
Please Help
I need Simple , Label with scrollView
I checked The sample, you wrote, i got Reflactor Error
Francly, I need something simple

Thanks !
 
Upvote 0

klaus

Expert
Licensed User
Longtime User
Yes Reflector is an object from the Reflection Library.
I will have a look at this program to replace getting the Label height with the reflection library by MeasureMultilineTextHeight from the StringUtils library.

Best regards.
 
Upvote 0
Top