Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/xamarin/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何在xamarin中创建google播放菜单_Xamarin - Fatal编程技术网

如何在xamarin中创建google播放菜单

如何在xamarin中创建google播放菜单,xamarin,Xamarin,我是Xamarin的新手。如何设计一个类似于Xamarin中google play菜单的弹出式菜单?如下图所示: 制作弹出式菜单有几种方法,我相信您会喜欢这些方法。最基本的方法是在AXML中添加类似于以下内容的内容: <?xml version="1.0" encoding="utf-8"?> <flyoutmenu.FlyOutContainer xmlns:android="http://schemas.android.com/apk/res/android" an

我是Xamarin的新手。如何设计一个类似于Xamarin中google play菜单的弹出式菜单?如下图所示:


制作弹出式菜单有几种方法,我相信您会喜欢这些方法。最基本的方法是在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>

资料来源:

另一来源:


我希望这有帮助

多谢各位。这就是我想要的。特别是第二个环节。