How to set toolbar margin in android . how to set the text in the center using toolbar margin in your activity .
@Overrideprotected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); setSupportActionBar(toolbar); toolbar.setTitleMargin(25, 15, 35, 15);
}
simpe and esay thank you
ReplyDelete