I work with Android on a day-to-day basis, and I'd like to avoid specs of size visualizations. For example: If I make a TextView
, I have to assign Height and Width properties, like this:
<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.... --> />
Is there a way to avoid size specifications in the Android layout?