图标显示为白色正方形

时间:2019-06-21 16:02:56

标签: android xamarin

我正在尝试在工具栏上显示图标,但它显示白色正方形。下面是我的代码。我也尝试过使用Imageview并获得相同的结果。

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:popupTheme="@style/AppTheme.PopupOverlay">
        <RelativeLayout
            android:gravity="center_vertical|end"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
            <ImageButton
                android:background="@mipmap/ic_myIcon"
                android:layout_width="36dp"
                android:layout_height="30dp" />
        </RelativeLayout>
    </android.support.v7.widget.Toolbar>

这是它的显示方式

enter image description here

0 个答案:

没有答案