如何在Android的工具栏项中添加图像?通过为商品的CustomView
属性分配新视图,我设法在iOS上做到了这一点。
我要输入文字和图片。彼此都不是。
如何在Android上访问工具栏项?
答案 0 :(得分:0)
您可以使用以下代码来使用ToolBarItem
。
<ContentPage ...>
<ContentPage.ToolbarItems>
<ToolbarItem Text="YourText" x:Name="YourName" Icon="image.png" Clicked="yourName_clicked"></ToolbarItem>
</ContentPage.ToolbarItems>
<ContentPage.Content>
...................
....................
</ContentPage.Content>
答案 1 :(得分:-1)
您可以选中此post来学习如何向工具栏添加图像。
但是,您可以在Toolbar.axml中添加图像
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:popupTheme="@style/ThemeOverlay.AppCompat.Light">
<ImageView
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:scaleType="fitCenter"
android:src="@drawable/xamarin_logo"
android:layout_gravity="center" />
</android.support.v7.widget.Toolbar>