i want to give input in a marathi language instead of english. i have done with setting TextView in Marathi. is it possible in android to give input in Marathi Language? if yes then please tell me how to do it in android. Thank you in advance.
Asked
Active
Viewed 1,368 times
1
-
tyr using typeface font ... and inculde .ttf file in assert folder – KOTIOS Jul 31 '13 at 07:21
-
thanks, i have successfully set Marathi Font to my TextView using .ttf file, now i want to give input in Marathi language through EditText. – Nilesh Sasane Jul 31 '13 at 07:34
2 Answers
1
final Typeface customF = Typeface.createFromAsset(this.getAsset(), "urTTF.ttf");
final TextView textV = (TextView) findViewById(...);
textView.setTypeface(customF);

KOTIOS
- 11,177
- 3
- 39
- 66
-
thank u. i have edited my question, now expecting some positive answer. – Nilesh Sasane Jul 31 '13 at 07:32
-
-
u need to make custom keyboard and there u need to use the above solution, refer the link below , there may be others tuts also to make custom keyboard in android , just google it :http://www.winkeywong.com/2011/05/how-to-custom-keyboard-in-android.html – KOTIOS Jul 31 '13 at 07:39
-
i have one doubt, is there is any way to type in hindi other than custome kayboard. – Nilesh Sasane Jul 31 '13 at 08:31
0
download the marathi font and follow this link...hope this will will help you.. Install Bengali fonts on Android emulator

Community
- 1
- 1

Addicted Manish
- 179
- 7