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

how to add message inbox icon in toolbar?

在 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

我想我已经解决了类似的问题。 这是 我的 post 来自

First, please learn how to create your own customized toolbar.

Search for topics like this: http://code.tutsplus.com/tutorials/getting-started-with-android-creating-a-customized-toolbar--cms-24223

Then you can create your toolbar as below ;-)

Here is an example of your wannabe toolbar

        <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>

and it looks like:

To have a better look, find Material Design inspired icons.

我还看到您需要一些波斯图标。如果您找不到它们,我会帮助您创建一个示例。

如有任何问题欢迎随时提问

希望对您有所帮助