Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 586 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 586 Bytes

android-Soundboard

A simple soundboard application for Android

android-Soundboard Screenshot

Usage

To add your own audio clips, place them in in the res\raw directory.

Then, update the arrays in res\values\arrays.xml with labels and resource IDs. Example:

...
<string-array name="labels">
    <item>One</item>
    <item>Two</item>
    <item>Three</item>
    ...
</string-array>

<integer-array name="ids">
    <item>@raw/one</item>
    <item>@raw/two</item>
    <item>@raw/three</item>
    ...
</integer-array>
...