如何删除操作栏中徽标左侧的填充?

时间:2016-09-28 07:52:24

标签: android android-layout android-studio

我的活动

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

    </android.support.design.widget.AppBarLayout>

</android.support.design.widget.CoordinatorLayout>

我的主要文件

<activity
    android:theme="@style/AppTheme.NoActionBar"
    android:windowSoftInputMode="adjustResize|stateAlwaysHidden">
    <intent-filter>

        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>

我试了很多东西,但是没什么好看的,这就是我上传这个问题的原因。我删除了填充,甚至尝试了contentInsets,但没有任何工作。

I want to remove that yellow space

protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_navigate);
        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);

        toolbar.setLogo(R.drawable.ic_account_circle_black);

 DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
        ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
                this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
        drawer.addDrawerListener(toggle);
        toggle.syncState();

        NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
        navigationView.setNavigationItemSelectedListener(this);
}
}

drawer_layout

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:openDrawer="start">

    <include
        layout="@layout/app_bar_navigation_to_main"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <android.support.design.widget.NavigationView
        android:id="@+id/nav_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        app:headerLayout="@layout/nav_header_navigation_to_main"
        app:menu="@menu/activity_navigation_to_main_drawer" />

</android.support.v4.widget.DrawerLayout>

2 个答案:

答案 0 :(得分:1)

您可以使用内容插入功能。 左侧插图是由工具栏的contentInsetStart引起的,默认情况下为16dp。

试试这个

<android.support.v7.widget.Toolbar
    xmlns:app="schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/primaryColor"
    app:contentInsetLeft="0dp"
    app:contentInsetStart="0dp"
    app:contentInsetRight="0dp"
    app:contentInsetEnd="0dp" />

并在您的根目录添加此内容。

xmlns:app="schemas.android.com/apk/res-auto"; 

在你的Android代码中试试这个

Toolbar.setContentInsetStartWithNavigation(0);

在最坏的情况下试试这个。 在您的活动onCreate中添加以下代码。

ImageView view = (ImageView)findViewById(android.R.id.home);
view.setPadding(10, 0, 0, 0);

让我知道它是否有效。

答案 1 :(得分:0)

左边插图默认为16dp,但您添加的图标就是左边插图现在为72dp的原因。您可以通过将以下代码添加到Toolbar来进行更改。

 app:contentInsetLeft="0dp"
 app:contentInsetStart="0dp"

你也可以在编程方式下设置填充

Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
int padding = 50;
toolbar.setPadding(padding, toolbar.getPaddingTop(), padding, toolbar.getPaddingBottom());

一个更重要的注意事项:

  

您一次只能添加IconTitle。如在文档中   提到你可以一次添加一件事Either (Icon) or (Title)