Another way you can achieve this is by adding the following definition to the XML file:
<EditText
android:id="@+id/input"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:inputType="number"
android:maxLength="6"
android:hint="@string/hint_gov"
android:layout_weight="1"/>
This will limit the maximum length of the EditText
widget to 6 characters.