0
我正在創建一個在android中使用數學字體(如lambda,integral等)的應用程序。我怎麼能使用鍵盤呢? PLZ沒有對谷歌如何在android中使用數學字體?
我正在創建一個在android中使用數學字體(如lambda,integral等)的應用程序。我怎麼能使用鍵盤呢? PLZ沒有對谷歌如何在android中使用數學字體?
發現如果您與符號的.TTF字體文件幫助,將其放在/資產文件夾,然後用它在這樣一個TextView:
Typeface font = Typeface.createFromAsset(getAssets(), "font.ttf");
TextView tv = (TextView) findViewById(R.id...);
tv.setTypeface(font);
至於使用鍵盤請參閱: http://www.addictivetips.com/mobile/create-your-own-custom-keyboard-for-android-devices/和creating custom android keyboard layout
嗨,我發現了一個鍵盤符合我的要求在市場上我可以做什麼就像安裝我的應用程序時,我可以直接從市場上下載鍵盤和使用它? – Navdroid 2012-01-09 10:22:52
是的,例如,請參閱http://code.google.com/p/scoreninja/ – 2012-01-09 12:36:13