I am using edit text in my code.I need to limit the weight value to 160 .How to achieve this.
This is the XML I'm using
android:id="@+id/txtWeight" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="5dp" android:inputType="number" android:layout_weight="0" android:background="@drawable/border" android:padding="5dp" android:maxLength="3" android:textSize="15sp" android:maxLines="1" android:hint=""
i have taken maxLenght as "3". So user will have option of entering upto 999 . I need to limit to 160.