[ad_1]
I have the following code:
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="25dp"
android:inputType="text"
android:maxLength="10"
android:textColorHighlight="#7cff88"
android:hint="@string/nome"
android:textColor="#ff0000"
android:textAlignment="center"
android:layout_weight="1"
>
></EditText>
Is there a way to set a double string in the hint? Something like @string/age & @string/name or @string/age :
I am trying to add ´:´ without adding it to the string.xml file.
[ad_2]