在android中对齐工具栏标题

时间:2015-08-24 13:26:57

标签: android toolbar

这是我的工具栏

enter image description here

我想改变我的工具栏标题:

enter image description here

我搜索了这个,但我找不到任何结果。

这是我的工具栏代码:

   <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:minHeight="?attr/actionBarSize"
                android:background="?attr/colorPrimary"
                app:theme="@style/AppTheme.Toolbar"
                app:titleTextAppearance="@style/AppTheme.Toolbar.Title"
                >

2 个答案:

答案 0 :(得分:0)

尝试将此添加到您的action_bar.xml

function showPosition(position) {
  lat = position.coords.latitude;
  lng = position.coords.longitude;
  alert(lat);
}

修改 我会将它们放在一个LinearLayout(水平)内,然后添加上面的命令

答案 1 :(得分:0)

我认为android将它视为普通视图 所以添加这个java代码,以便它可以改变工具栏的外观 添加java

setSupportActionBar(findViewById(R.id.your_toolbar_id));