我使用VS 2017来创建Android App(Xamarin)导航抽屉应用程序。我在互联网上搜索了一个如何向使用已创建的导航抽屉但未成功的应用添加新活动的示例。有关如何添加活动的任何想法吗?
由于 保罗。
public bool OnNavigationItemSelected(IMenuItem item)
{
int id = item.ItemId;
if (id == Resource.Id.nav_camera)
{
// Run a new activity here!
}
else if (id == Resource.Id.nav_gallery)
{
}
else if (id == Resource.Id.nav_slideshow)
{
}
else if (id == Resource.Id.nav_manage)
{
}
else if (id == Resource.Id.nav_share)
{
}
else if (id == Resource.Id.nav_send)
{
}
DrawerLayout drawer = FindViewById<DrawerLayout>(Resource.Id.drawer_layout);
drawer.CloseDrawer(GravityCompat.Start);
return true;
}
答案 0 :(得分:0)
从here,您可以看到:
如果您的应用根据用户选择的导航菜单项切换内容,则应考虑在主要内容区域中使用片段。从导航抽屉导航时交换片段允许无缝的抽屉动画,因为相同的基本布局保持不变。
官方建议我们在主要内容区域使用片段。
如果你想开始一个新的活动,你需要创建一个活动并为它创建一个布局,比如Activity1
:
[Activity(Label = "Activity1")]
public class Activity1 : Activity
{
protected override void OnCreate(Bundle savedInstanceState)
{
base.OnCreate(savedInstanceState);
// Create your application here
SetContentView(Resource.Layout.layout1);
}
}
layout1
:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="new Activity" />
</LinearLayout>
然后开始吧:
if (id == Resource.Id.nav_camera)
{
Intent intent = new Intent(this, typeof(Activity1));
StartActivity(intent);
}
这将打开一个新的Activity,而在新的Activity中,没有DrawerLayout
。