3

I want to display the labels with AbsoluteLayout view by providing x,y coordinates programmatically. The issue is ScrollView is overriding the AbsoluteLayout and unable to scroll the page.

Shiva Saurabh
  • 1,281
  • 2
  • 25
  • 47
  • `AbsoluteLayout` has been deprecated for about five years. Please do something else, such as creating your own custom `View` or `ViewGroup` that incorporates your own layout rules. – CommonsWare Jan 02 '14 at 13:47

1 Answers1

0

Don't use AbsoluteLayout (it has been deprecated, and isn't supported).

Try to use a RelativeLayout, which generally allows a lot of control about placing your UI elements on the screen.

You can use XML or Java code to establish this layout (same as any other layout).

Keep in mind, you can generally only have 1 scrollable container inside another scrollable container, if you have more than one this could cause problems.

Booger
  • 18,579
  • 7
  • 55
  • 72