I cannot type
<Button
android:id="@+id/del"
android:text="<"
android:textColor="#FFFFFF"/>
it gives an error
Error:(317) Error parsing XML: not well-formed (invalid token)
Do it like this in the XML:
<Button
android:id="@+id/del"
android:text="<"
android:textColor="#FFFFFF"/>
Programmatically:
button.setText("<");
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With