hi there i am newer in android and i want to ask how to use one font for many text views i have use this method
    final String DosisPath = "fonts/Dosis-Bold.ttf";
    final Typeface Dosis_Bold = Typeface.createFromAsset(getAssets(), DosisPath);
    TextView txtCancle = (TextView) findViewById(R.id.cancle);
    txtCancle.setTypeface(Dosis_Bold);
and it's work good but i try to make the same Typeface for another TextView but that dosen't work like this
 final String DosisPath = "fonts/Dosis-Bold.ttf";
    final Typeface Dosis_Bold = Typeface.createFromAsset(getAssets(), DosisPath);
    TextView txtCancle = (TextView) findViewById(R.id.cancle);
    txtCancle.setTypeface(Dosis_Bold);
    EditText ETCode  = (EditText)findViewById(R.id.secET);
    ETCode.setTypeface(Dosis_Bold);
if the is an error i have done tell me and if there is another way to make that tell me too thanks alot .