Hi I just want to know if it is possible to forbid the first number that the user can enter to be "0".
<EditText
android:id="@+id/editText1"
android:layout_width="50dp"
android:layout_height="35dp"
android:layout_marginBottom="2dp"
android:maxLength="2"
android:inputType="number"
android:digits="123456789">
<requestFocus />
</EditText>
Using this code however prevents the user from entering "0" at all but I want just the first digit not to be "0"