我目前正在使用 MVVMlight 在 xamarin.forms 中使用主详细信息页面,它基于 os 的默认行为呈现,它完美呈现了我想要的内容,但在 android 母版页中从导航栏下方开始。我希望母版页像 ios 一样覆盖整个屏幕高度,如果没有自定义渲染器,是否有任何方法或解决方案,或者是否有必要为此编写自定义渲染器
问问题
1281 次
2 回答
1
使用 FormsAppCompatActivity 而不是 FormsApplicationActivity。
定义你自己的toolbar.axml
工具栏.axml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:minHeight="?attr/actionBarSize"
android:contentInsetStart="0dp"
android:contentInsetLeft="0dp"
app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways">
</android.support.v7.widget.Toolbar>
设置自己的ToolbarResource
public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
{
protected override void OnCreate(Bundle bundle)
{
ToolbarResource = Resource.Layout.toolbar;
base.OnCreate(bundle);
global::Xamarin.Forms.Forms.Init(this, bundle);
LoadApplication(new App());
}
}
于 2016-10-10T08:05:09.720 回答
0
是的你可以。检查这些链接。他们都使用 MasterDetail 页面来创建导航抽屉。只有 Detail 页面成为主页面视图,而 Master 页面成为滑动菜单。这实际上相当简单。还有其他几个很好的例子。但是,我认为您可以通过我列出的 3 个链接完成工作。如果不尝试像 How can I create a Navigation Drawer in Xamarin Forms 这样的搜索。
http://www.meritsolutions.com/mobile-development/implementing-navigation-drawer-in-xamarinforms/
https://www.syntaxismyui.com/xamarin-forms-masterdetail-page-navigation-recipe/
于 2016-06-29T19:33:34.277 回答