How to use tamil text as input in android - android

I am creating an android application in which i have used the south indian language to display the text in tamil for which i have converted all the strings to tamil but i need to give the inputs in edit text as tamil.
How can i do this if the user doesn't have a tamil keyboard installed with them can anyone show me some examples for input the text in android with local languages.What i have done so far is converted the strings to tamil but i want to give the inputs in tamil.I have tried using some examples which gives the values as tamil but it dosn't shows how to give the inputs in tamil.

The only option would be to create a custom Keyboard for your app, you have little to no control over the system InputMethod.

Related

How to change the keyboard input language to the selected language in android programmatically

I am creating an application in which i have given an option for the users to select the language. In my app i have given Tamil and English language when the user selects the language Tamil it shows the Tamil strings perfectly.But what i want to do is when the user selects Tamil language the input type(keyboard) should also changes to Tamil even if the user doesn't have any Tamil keyboard application.
Can anyone tell me how can i change the keyboard input to the selected language using locale in android.
The input type depends on the user's phone or tablet, if they have the Google Indic Keyboard and have selected Tamil as an optional language then only they will be able to input Tamil. You can prompt the user to download the Google Indic Keyboard app and select Tamil language. Here is the link -
https://www.google.co.in/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwiXvbqLk9DQAhXGs48KHYs7AvkQFggcMAA&url=https%3A%2F%2Fplay.google.com%2Fstore%2Fapps%2Fdetails%3Fid%3Dcom.google.android.apps.inputmethod.hindi%26hl%3Den&usg=AFQjCNGp4o8Sx51FsUibPbqog_lFETEwjA

as3 datagrid did not show arabic letters when running on mobile

I have created datagrid with filling static data in flash as3, the Arabic text in the datagrid does not accept new fonts, just the default font.
When I export the file on "AIR on Android" and open it on my mobile, only English letters show up, but the Arabic letters are hidden.
Would you like to help me with this issue, thanks in advance

Require suggestions for writing telugu font through english letters typing( english keyboard) in android app

I would like to develop an meme android app in which I require English to Telugu conversion API.
When I type letters in English language that has to be converted and displayed right away in Telugu font. For example i type "hyderabad" there should be instant conversion display of "హైదరాబాద్".
Any suggestions or code snippets or at least any API resources are appreciable.

arabic letters from a file in eclipse android

I'm trying to retrieve Arabic words that I stored in a text file and display them in my android application, any idea on how to display Arabic letters or words in my app? I've tried different kinds of methods like using the ArabicReshaper and this is an example of the code:
tx=(TextView)this.findViewById(R.id.tt);
try{
tx.setTypeface(Typeface.createFromAsset(getAssets(),"dejavusans.ttf"));
tx.setText(ArabicUtilities.reshape("\u0641\u0631\u0633"));//
}
but I need another way instead of using the Unicode for each Arabic letter and connecting them. Can I not write the Arabic word directly into eclipse?

Android hindi chars soft keypad?

I am using Hindi fonts in my application by using the following code as:
Typeface font = Typeface.createFromAsset(this.getAssets(), "fonts/DroidHindi.ttf");
txt.setTypeface(font);
Now I wanted to take input from the user in an edit Text box in hindi language..So for this, Hindi soft keypad is required , can anyone pls guide me how to add hindi language soft keypad?
It depends entirely on the user's choice of keyboard.
To test Hindi input, download one of the Hindi IME available on the market, such as PaniniKeypad Hindi IME, or get GO Keyboard and "Hindi for GO Keyboard", all of them available on the Android Market for free.

Categories

Resources