ToolBar中的TextView向右移动到setDisplayHomeAsUpEnabled(true)

时间:2016-01-23 08:38:34

标签: android-studio toolbar android-toolbar

我是Android应用开发和使用Android工作室的新手。我想在ToolBar中放置Textview。这是我的ToolBar xml文件代码:

<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#FF5722"
    android:elevation="4dp">

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:text="Holler"
        android:textColor="@android:color/white"
        android:textStyle="bold|italic"
        android:textSize="30dp"
        android:layout_gravity="center"
        android:id="@+id/toolbar_title"
        android:gravity="center"
        />

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

在我的第一个活动中,它在中心显示为预期。但是当我启动新的Activity时,TextView正在向右移动。这是我的FirstActivity代码:

toolbarHome = (Toolbar) findViewById(R.id.tool_bar_home); // Attaching the layout to the toolbar object
        setSupportActionBar(toolbarHome);

        final android.support.v7.app.ActionBar actionBar = getSupportActionBar();
        if (actionBar != null) {
            actionBar.setHomeAsUpIndicator(R.mipmap.ic_launcher);
            actionBar.setDisplayHomeAsUpEnabled(true);
        }

如果您需要更多代码,请与我们联系。

1 个答案:

答案 0 :(得分:1)

这是工具栏的默认行为。这是因为后退按钮的边缘。如果是简单文本,则可以使用工具栏标题设置文本视图。 但是,如果要在工具栏中使用textview。您想通过调用以下方式隐藏后退按钮:

getSupportActionBar().setDisplayHomeAsUpEnabled(false);

现在,您必须通过在布局文件中设置带有后退箭头图标的ImageButton / ImageView以及TextView来创建自己的后退按钮,以获得所需的结果。