Skip to content

Instantly share code, notes, and snippets.

@rjlutz
Created September 25, 2019 19:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rjlutz/37b9fb8fca07847d1760a62c64ef08a4 to your computer and use it in GitHub Desktop.
Save rjlutz/37b9fb8fca07847d1760a62c64ef08a4 to your computer and use it in GitHub Desktop.
Building zybooks BandDatabase example in Android Studio with Master/Detail Pattern
<resources>
<string name="app_name">The Band Database</string>
<string-array name="bands">
<item>The Beatles</item>
<item>Nirvana</item>
<item>U2</item>
</string-array>
<string-array name="descriptions">
<item>An English rock band that formed in Liverpool in 1960.</item>
<item>An American rock band that formed in Washington in 1987.</item>
<item>An Irish rock band from Dublin that formed in 1976.</item>
</string-array>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment