我想在顶部栏中的Android应用程序中相应地对齐图标

时间:2017-04-05 12:14:07

标签: android android-layout

我想在顶部栏中的Android应用程序中相应地对齐图标我的顶栏有左边的侧边菜单image

侧面菜单图标之后有一些空白空间我想通过相应地排列图标来填充该空间,但我不知道该怎么做

请帮我避开那个空白区域并将图标放在那个地方

我还附上了图片以便更好地观看

由于

3 个答案:

答案 0 :(得分:1)

发布您的activity.xml文件的screenShot

答案 1 :(得分:0)

请尝试为操作栏创建自定义布局&膨胀它。

答案 2 :(得分:0)

您可以在工具栏中使用setlogo方法填充所需的空间

toolbar.setLogo(R.drawable.yourlogo);

或根据您的要求简单设置工具栏中的所有图标。 像这样

<android.support.v7.widget.Toolbar
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize">
    <LinearLayout
        android:layout_width="wrap_content"
        android:orientation="horizontal"
        android:layout_height="wrap_content">
        <ImageView
            android:layout_width="wrap_content"
            android:background="@mipmap/ic_launcher"
            android:layout_height="wrap_content" />
        <ImageView
            android:layout_width="wrap_content"
            android:background="@mipmap/ic_launcher"
            android:layout_height="wrap_content" />
        <ImageView
            android:layout_width="wrap_content"
            android:background="@mipmap/ic_launcher"
            android:layout_height="wrap_content" />
        <ImageView
            android:layout_width="wrap_content"
            android:background="@mipmap/ic_launcher"
            android:layout_height="wrap_content" />
        <ImageView
            android:layout_width="wrap_content"
            android:background="@mipmap/ic_launcher"
            android:layout_height="wrap_content" />
    </LinearLayout>

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

希望这有帮助!