13
bunu yapmak için nereden nasıl gidiyorsun, bir sonraki Radyo Düğme benRadyo düğmesinin yanındaki yazı tipini değiştir?
TextView tv = (TextView) findViewById(R.id.textview);
Typeface font = Typeface.createFromAsset(getAssets(), "SF_Cartoonist_Hand_Bold.ttf");
tv.setTypeface(font);
ben metin için benzer bir şey yapmak istiyorum kullanılan bir TextView'un yazı tipini değiştirmek için?
RadioButton rb = (RadioButton) findViewById(R.id.radiobutton);
Typeface font = Typeface.createFromAsset(getAssets(), "SF_Cartoonist_Hand_Bold.ttf");
rb.setTypeface(font);
aynı yolu değil midir: – Piovezan