Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
マラヤーラム語のニュースを表示する Android アプリケーションを開発しようとしています。ISO-8859-5チャーターエンティティを含むデータベースがあります。
ISO-8859-5
例:
'çÁxÞ æØaV ææµÎÞx¢'
マラヤーラムフォントで表示したい。私は何をすべきか?
こんにちは、マラヤム ttf ファイルをダウンロードしてアセット フォルダーに保存し、それをコードで使用して、次のコードを参照してください。TextView text = (TextView) findViewById(R.id.textview03); Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/Molot.otf"); text.setTypeface(tf);
TextView text = (TextView) findViewById(R.id.textview03); Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/Molot.otf"); text.setTypeface(tf);