2
I work with Android on a day-to-day basis, and I would like to avoid the size specs views. For example: If I make a TextView
, i have to assign Height and Width properties, so:
<TextView
android:id="@+id/activity_lbl"
android:layout_width="wrap_content" <!-- Novamente -->
android:layout_height="wrap_content" <!-- Novamente... --> />
<TextView
android:id="@+id/activity_lbl2"
android:layout_width="wrap_content" <!-- Novamente... -->
android:layout_height="wrap_content" <!-- Novamente.... --> />
There is a way to avoid the size specifications in the Android layout?