如何设置中间的ActionBar标题而不是默认的左对齐位置?

问题描述:

尝试设置中间的ActionBar标题,而不是默认的左对齐位置。要做到这一点的基础上,其他的答案,这是我做了什么:如何设置中间的ActionBar标题而不是默认的左对齐位置?

Toolbar myToolbar = (Toolbar) findViewById(R.id.toolbarDownloads); 
    setSupportActionBar(myToolbar); 
    if(getSupportActionBar()!=null) 
    { 
     getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM); 
     getSupportActionBar().setCustomView(R.layout.actionbar_layout); 
    } 

actionbar_layout.xml

<?xml version="1.0" encoding="utf-8"?> 
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:orientation="vertical" > 

    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Downloads" 
     android:layout_centerInParent="true" 
     android:textColor="#000000" 
     android:id="@+id/mytext" 
     android:textSize="18sp" /> 

</RelativeLayout> 

然而,这并没有产生预期的结果(即这使得文字仍然左对齐),这种方法有什么问题,以及如何解决这个问题?

+0

你尝试添加getSupportActionBar()setDisplayShowCustomEnabled()。之前getSupportActionBar()。setCustomView(R.layout.actionbar_layout); ? –

尝试这种使用习惯Toolbar

<android.support.v7.widget.Toolbar 
    android:id="@+id/ar_toolbar" 
    android:layout_width="match_parent" 
    android:layout_height="?attr/actionBarSize" 
    android:background="?attr/colorPrimary" 
    app:layout_scrollFlags="exitUntilCollapsed" 
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"> 


    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:gravity="center" 
     android:text="Center" 
     android:orientation="vertical"> 

     <TextView 
      android:id="@+id/toolbar_title" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:gravity="center" /> 
    </LinearLayout> 

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

现在的java文件

private Toolbar toolbar; 
toolbar = (Toolbar) findViewById(R.id.ar_toolbar); 
TextView mTitle = (TextView) toolbar.findViewById(R.id.toolbar_title); 
mTitle.setText("Nilesh Rathod"); 
setSupportActionBar(toolbar); 
+0

@Nilesh,感谢您的快速方法,但我不能使用自定义布局文件中的工具栏,还有其他元素依赖于Activity中的工具栏,即我有一个自定义的SmartTabLayout(https:// github.com/ogaclejapan/SmartTabLayout)与工具栏一起工作,因此无法使用工具栏进行操作栏的自定义布局文件:/ – OBX

+1

好吧,我明白了! ,让我试试:) – OBX

+0

@OBX让我知道在任何查询的情况下 –

你需要在你xml文件中使用Toolbar,你可以使用TextViewToolbar。您可以将自定义视图添加到Toolbar。一旦你完成了xml文件,那么你可以将Toolbar定义为Activity类。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

    <android.support.v7.widget.Toolbar 
     android:id="@+id/toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="58dp" 
     android:background="?attr/colorPrimary" 
     android:minHeight="?attr/actionBarSize" 
     android:titleTextColor="#ffffff"> 

     <TextView 
      android:id="@+id/mytext" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:gravity="center" 
      android:text="Downloads" 
      android:textColor="#000000" 
      android:textSize="18sp" /> 

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

    //Rest of your code 

</LinearLayout> 

在活动类,你可以定义为使用下面的代码后,你的TextView和隐藏默认的标题

Toolbar toolbar; 
toolbar = (Toolbar) findViewById(R.id.ar_toolbar); 
toolbar.setTitle(""); 

简单的方法使用android:layout_gravity="center"初始化TextView和设定值

里面你活动:

setSupportActionBar(toolbar); 
getSupportActionBar().setDisplayShowTitleEnabled(false); 
toolbar_title = (TextView) findViewById(R.id.toolbar_title); 
toolbar_title.setText("My Custom center title"); 

自定义工具栏XML代码:

<?xml version="1.0" encoding="utf-8"?> 
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    android:id="@+id/toolbar" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    app:contentInsetEnd="0dp" 
    app:contentInsetLeft="0dp" 
    app:contentInsetRight="0dp" 
    app:contentInsetStart="0dp" 
    app:contentInsetStartWithNavigation="0dp"> 

    <TextView 
     android:id="@+id/toolbar_title" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_gravity="center" 
     android:text="Toolbar Title" /> 

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

你不需要为这个Toolbar。就在你的活动使用像Theme.AppCompat.Light.DarkActionBar主题与ActionBar和使用下面的代码:

@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 

    if (getSupportActionBar() != null) { 
     getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM); 
     getSupportActionBar().setCustomView(R.layout.actionbar_layout); 
    } 
    //your code 
} 

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    android:orientation="vertical"> 

    <android.support.v7.widget.Toolbar 
     android:id="@+id/toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:background="@android:color/transparent" 
     android:minHeight="?attr/actionBarSize" 
     app:contentInsetStart="0dp"> 

     <TextView 
      android:id="@+id/back_txt" 
      style="@android:style/TextAppearance.Medium" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_margin="10dp" 
      android:gravity="center" 
      android:text="Back" /> 


     <TextView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="Downloads" 
      android:layout_gravity="center|center_horizontal|center_vertical" 
      android:layout_marginTop="20dp" 
      android:layout_centerInParent="true" 
      android:textColor="#000000" 
      android:id="@+id/mytext" 
      android:textSize="18sp" /> 

     <TextView 
      android:id="@+id/filter_btn" 
      style="@style/Base.TextAppearance.AppCompat.Medium" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_gravity="right|center_vertical|center_horizontal" 
      android:layout_margin="10dp" 
      android:drawablePadding="5dp" 

      android:gravity="center" 
      android:text="Back" 
      android:textColor="@android:color/black" /> 
    </android.support.v7.widget.Toolbar> 


</LinearLayout>