I am trying to change the font of all my button in onCreate()
method
there is a way to do that ?
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Typeface buttontypeface = Typeface.createFromAsset(getAssets(),"Calculator.ttf");
// get just buttons ids
}
If I use findViewById
I will get the id for a single button , I want a fast way to get all button ids and then change their font.
ex I have : button1, button_a, buttonout
...