添加工具栏Android(xamarin)左侧的图标

时间:2015-07-18 11:31:05

标签: android xamarin

我为新的v7工具栏下载了一个示例。我可以在右侧添加自定义图标,但我不知道如何将其添加到左侧 请查看此图片以查看它当前的样子http://postimg.org/image/qnf67g4tz/ 我正在使用的代码就在这里。

<?xml version="1.0" encoding="utf-8" ?> 
    <menu xmlns:android="http://schemas.android.com/apk/res/android" 
       xmlns:local="http://schemas.android.com/apk/res-auto">
       <item
          android:id="@+id/menu_share"
          android:icon="@drawable/ic_action_content_create"
          android:background="@android:color/holo_blue_light"
          local:showAsAction="ifRoom"
          android:title="Share" />
    </menu>

和:         LayoutInflater inflater =(LayoutInflater)Maincontext.GetSystemService(Context.LayoutInflaterService);         查看v = inflater.Inflate(Resource.Layout.toolbar,null);         工具栏工具栏= v.FindViewById(Resource.Id.toolbar);         toolbar.Title = title;         toolbar.SetTitleTextColor(Color.White);         toolbar.InflateMenu(Resource.Menu.home);

1 个答案:

答案 0 :(得分:2)

后退箭头图标的

<android.support.v7.widget.Toolbar
            android:id="@+id/product_toolBar_title"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:fitsSystemWindows="true"
            app:layout_collapseMode="pin"
            app:navigationIcon="@drawable/ic_arrow_back_white_24dp"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
            app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"/>