Skip to content

Instantly share code, notes, and snippets.

@hitesh-dhamshaniya
Created January 28, 2019 12:12
Show Gist options
  • Select an option

  • Save hitesh-dhamshaniya/a7bcd116488ece7a132186186febbe02 to your computer and use it in GitHub Desktop.

Select an option

Save hitesh-dhamshaniya/a7bcd116488ece7a132186186febbe02 to your computer and use it in GitHub Desktop.
How to add DOCTYPE In Android String.xml for use multiple same string without repeating its value
<!DOCTYPE resources [<!ENTITY appName "Food App">
<!ENTITY addFood "Add Food">]>
<resources>
<string name="app_name">&appName;</string>
<string name="action_add_food">&addFood;</string>
<string name="title_add_food">&addFood;</string>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment