工具栏上的标题文本对齐

时间:2014-11-21 06:40:30

标签: android toolbar

我正在项目中使用支持库中的工具栏。我找不到如何更改文本对齐方式。它在默认情况下处于左侧。但我需要把它移到中心。我认为有一个方法 setTitleTextAppearance(),但我不明白它的使用。

2 个答案:

答案 0 :(得分:3)

添加您自己的TextView,可以在任意位置对齐:

<android.support.v7.widget.Toolbar
   xmlns:android="http://schemas.android.com/apk/res/android"
   android:id="@+id/toolbar"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:background="@color/green">

   <!-- Below will add your text in the center of the toolbar -->
   <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:text="Your Text"
    android:textColor="#ff0000"
    android:textStyle="bold"/>

 </android.support.v7.widget.Toolbar> 

答案 1 :(得分:0)

这很简单 - 您可以通过编程方式执行此操作:

    public class AboutUsActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_about_us);
        Toolbar toolbar = (Toolbar) findViewById(R.id.devtoolbar_about);
        toolbar.setTitle("About Us");
        toolbar.setTextAlignment(View.TEXT_ALIGNMENT_CENTER);
        setSupportActionBar(toolbar);
    }
}

对齐选项包括:TEXT_ALIGNMENT_CENTER,TEXT_ALIGNMENT_LEFT等。 PS:我知道这是一个老问题!