Skip to content Skip to sidebar Skip to footer

Android Voice Recognition Commands

Goal Voice recognition starts, a voice command is spoken and the correct action is done. (Play Some Music starts the music player of whatever supposed to happen.) Current situation

Solution 1:

Easiest way is..

 if (matches.contains("close"))
        {
            finish();
        }

Post a Comment for "Android Voice Recognition Commands"