У меня есть TextView, который в настоящее время имеет высоту 0 дп, и я хочу, чтобы он увеличивался на 20 дп с каждым нажатием кнопки
<TextView
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="@color/colorPrimary"/>
<Button
android:layout_centerHorizontal="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />