android:textSize - How to Change the Font Size of an EditText


1. Add an EditText.
2. Open the main.xml file and add the below highlighted line of code between your <EditText> tags. Use the sp dimension for font sizes.

<EditText
  ...
android:textSize="50sp"
/>

3. Compile and run!

Resources: