I have a main Activity
with TextView
on it. I need perform some actions at application startup. These actions use TextView
's bounds.
I tryed override onCreate()
, onStart()
and onResume()
methods, but TextView
's bound are always (0,0).
How can I capture a moment when TextView
obtains it's size?
Thanks for all!