如何在xamarin中创建Google Play菜单

时间:2016-06-06 14:13:08

标签: xamarin

我是Xamarin的新手。如何在Xamarin中设计一个看起来像google play菜单的弹出菜单?我看到下面的图片:

enter image description here

1 个答案:

答案 0 :(得分:1)

有几种方法可以制作一个飞出菜单,这是我相信你所追求的。最基本的方法是在AXML中添加类似以下的内容:

<?xml version="1.0" encoding="utf-8"?>
<flyoutmenu.FlyOutContainer xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <include
        layout="@layout/MenuLayout" />
    <include
        layout="@layout/ContentLayout" />
</flyoutmenu.FlyOutContainer>

来源:http://blog.neteril.org/blog/2013/04/19/fly-out-menu-xamarin-android/

另一个来源:http://www.appliedcodelog.com/2016/01/navigation-drawer-using-material-design.html

我希望这有帮助!