I am trying to create a simple Android app by Android Studio (v2.2.3). I am new to it and hope someone can help me answer the following questions:
My app needs to enter some inputs-->click button-->show outputs. So, from the widgets part, I should select "EditText" for inputs, "TextView" for outputs and "button" for button, right?
Every inputs has its own constraints. Some of them need to be positive integer (do not include 0) and some of them need to be greater than 3. How could I set these constraints? If users violate the constraints, how could I pop up alert?
Thanks in advance.