如何在工具栏中添加消息收件箱图标?

时间:2015-12-28 13:38:16

标签: android xml icons toolbar inbox

在Android工具栏中我有一个显示收件箱信息的项目。

<item
    android:id="@+id/message"
    android:orderInCategory="200"
    android:title="@string/message"
    android:icon="@drawable/message"
    app:showAsAction="always" />

icon in toolbar

我如何添加像这个图标(programmity)? 我可以制作一个xml文件吗? 显示收件箱消息的工具栏示例(工具栏是RTL和波斯语) Persian toolbar that have a inbox icon

1 个答案:

答案 0 :(得分:0)

我认为我已经解决了类似的问题。 这是来自Add a TextView to the elements of a Toolbar

我的帖子
  

首先,请了解如何创建自己的自定义工具栏。

     

搜索以下主题:   http://code.tutsplus.com/tutorials/getting-started-with-android-creating-a-customized-toolbar--cms-24223

     

然后您可以创建如下工具栏: - )

     

以下是您想要的工具栏示例                                 

        <ImageView
            android:id="@+id/shopping_bag"
            android:layout_width="44dp"
            android:layout_height="44dp"
            android:src="@drawable/bag"
            android:layout_alignParentLeft="true"
            android:layout_centerInParent="true"></ImageView>

        <ImageView
            android:id="@+id/arrow"
            android:layout_width="48dp"
            android:layout_height="wrap_content"
            android:src="@drawable/usability_bidirectionality_guidelines_when3"
            android:layout_alignParentRight="true"></ImageView>

        <ImageView
            android:id="@+id/number"
            android:layout_width="20dp"
            android:layout_height="20dp"
            android:src="@drawable/one"
            android:layout_alignTop="@+id/shopping_bag"
            android:layout_alignRight="@+id/shopping_bag"/>

    </RelativeLayout>
     

看起来像:

     

enter image description here

     

为了更好看,找到Material Design灵感的图标。

我也看到你需要一些波斯图标。如果你找不到它们,我会帮你创建一个例子。

如果您有任何疑问,请随意提问

希望有所帮助