如何在 ActionBar android 上设置文本中间?
how to set text middle on ActionBar android?
大家好之前可能被问过好几次但是我想将文本中间设置为操作栏
我已经使用以下代码来完成它..它没有帮助..
ActionBar bar = getActionBar();
bar.setTitle(Html.fromHtml("<center>" + "<b>" + "Sign Up" + "</b>"
+ "</center>"));
bu 当我使用时,我的目的就达到了任何准确的答案。
TextView customView = (TextView)LayoutInflater.from(this).inflate(R.layout.actionbar_custom_title_view_centered,null);
ActionBar.LayoutParams params = new ActionBar.LayoutParams(ActionBar.LayoutParams.MATCH_PARENT, ActionBar.LayoutParams.MATCH_PARENT, Gravity.CENTER);
customView.setText("Your centered text");
getSupportActionBar().setCustomView(customView, params);
大家好之前可能被问过好几次但是我想将文本中间设置为操作栏 我已经使用以下代码来完成它..它没有帮助..
ActionBar bar = getActionBar();
bar.setTitle(Html.fromHtml("<center>" + "<b>" + "Sign Up" + "</b>"
+ "</center>"));
bu 当我使用时,我的目的就达到了任何准确的答案。
TextView customView = (TextView)LayoutInflater.from(this).inflate(R.layout.actionbar_custom_title_view_centered,null);
ActionBar.LayoutParams params = new ActionBar.LayoutParams(ActionBar.LayoutParams.MATCH_PARENT, ActionBar.LayoutParams.MATCH_PARENT, Gravity.CENTER);
customView.setText("Your centered text");
getSupportActionBar().setCustomView(customView, params);