Change font of the floating label EditText and TextInputLayout

前端 未结 12 1038
北海茫月
北海茫月 2020-12-03 01:23

Someone tried to change the font of the floating label? I changed the source of EditText but the font of the floating label did not change, I am very grateful to those who h

12条回答
  •  离开以前
    2020-12-03 01:41

    i just found a simple solution and it's worked for me:

    in this way you can set the typeface to hint of any edit text:

    in layout.xml :

     
                
            
    

    and in java class :

    public class MainActivity extends AppCompatActivity {
    
    EditText editText;
    TextInputLayout textInputLayout;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Typeface font_yekan= Typeface.createFromAsset(getAssets(), "fonts/byekan.ttf");
            textInputLayout= (TextInputLayout) findViewById(R.id.text_input1);
        textInputLayout.setTypeface(font_yekan);
          }
     }
    

提交回复
热议问题