I\'m trying to add a textView to a frameLayout. The TextView has wrap_content properties, so it grows when the text grows
textView
frameLayout
TextView
wrap_content
Set FrameLayout properties android:layout_width and android:layout_height to fill_parent and also set TextView property LayoutGravity . such as Center, Right or Top.
FrameLayout
android:layout_width
android:layout_height
fill_parent
LayoutGravity
Center
Right
Top
Thanks