-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# TranslateAPI | ||
Simple Java library to translate your text using Google Translate without using of API KEY | ||
|
||
# Screenshot | ||
![alt text](https://raw.githubusercontent.com/iammannan/TranslateAPI/master/demo2.png) | ||
|
||
# Download | ||
|
||
* Step 1. Add it in your root build.gradle at the end of repositories: | ||
```java | ||
allprojects { | ||
repositories { | ||
... | ||
maven { url 'https://jitpack.io' } | ||
} | ||
} | ||
``` | ||
* Step 2. Add the dependency | ||
```java | ||
dependencies { | ||
implementation 'com.github.iammannan:TranslateAPI:1.0' | ||
} | ||
``` | ||
* Full Code - Example | ||
```java | ||
TranslateAPI translateAPI = new TranslateAPI( | ||
Language.AUTO_DETECT, //Source Language | ||
Language.TAMIL, //Target Language | ||
"Your Text"); //Query Text | ||
|
||
translateAPI.setTranslateListener(new TranslateAPI.TranslateListener() { | ||
@Override | ||
public void onSuccess(String translatedText) { | ||
Log.d(TAG, "onSuccess: "+translatedText); | ||
textView.setText(translatedText); | ||
} | ||
|
||
@Override | ||
public void onFailure(String ErrorText) { | ||
Log.d(TAG, "onFailure: "+ErrorText); | ||
} | ||
}); | ||
``` | ||
![alt text](https://raw.githubusercontent.com/iammannan/TranslateAPI/master/demo1.png) | ||
|