android:minHeight - Set the Minimum Height of a TextView

How to Set the Minimum Height of a TextView

added in API Level 1

Makes the TextView be at least this many pixels tall. Must be a dimension value.

1. Create an Android project, if you don't already have one.

2. Add a TextView in the main.xml file.

3. In the main.xml file, add the code below.

<TextView
        ...
android:minHeight = "100dp"
/>

4. Compile and run!
http://developer.android.com/reference/android/widget/TextView.html#attr_android:minHeight
http://developer.android.com/reference/android/R.attr.html#minHeight