Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
vikramezhil authored Oct 16, 2017
1 parent 6af0f37 commit a14ac9a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,18 +69,18 @@ In your activity, initialize the droid speech class and set the droid speech lis
DroidSpeech droidSpeech = new DroidSpeech(this, null);
droidSpeech.setOnDroidSpeechListener(this);
```
To start droid speech to listen to user voice call the method <i>startDroidSpeechRecognition()</i>,
To start droid speech to listen to user voice call the method `startDroidSpeechRecognition()`,
```java
droidSpeech.startDroidSpeechRecognition();
```
To close droid speech operations call the method <i>closeDroidSpeechOperations()</i>,
To close droid speech operations call the method `closeDroidSpeechOperations()`,
```java
droidSpeech.closeDroidSpeechOperations();
```
The speech result will be triggered at <i>onDroidSpeechFinalResult</i>,
The speech result will be triggered at `onDroidSpeechFinalResult`,
```java
@Override
Expand Down

0 comments on commit a14ac9a

Please sign in to comment.