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
Try to gravity or Layout gravity to your Framelayout or the Textview. It makes your Layout to the center of the screen. Use like this,
android:layout_gravity="center"
or
android:gravity="center"