Im new to this so sorry if the answer is really obvious...
so I have an EditText were the user inputs their name:
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="textPersonName"
android:ems="10"
android:id="@+id/editText"
android:layout_above="@+id/analogClock"
android:layout_centerHorizontal="true"
android:layout_marginBottom="49dp"
android:hint="Enter Your Name"/>
When they fill in the name, i would like to take their name and put it into a variable but im really unsure,
Thanks in advance