You can simply use this.
TextView tv = (TextView) findViewById(R.id.tv);
Typeface Malayalam = Typeface.createFromAsset(getAssets(), "AnjaliOldLipi.ttf");
tv.setTypeface(Malayalam);
tv.setText("റമീസ് ");
Download the ttf file from HERE and put it in the assets folder of your Android project.