使用Android工具栏

时间:2015-06-18 19:50:18

标签: android xamarin android-toolbar

我按照以下教程来实现工具栏:

http://blog.xamarin.com/android-tips-hello-toolbar-goodbye-action-bar/

当我编写这段代码时,有些事情无法解决。

protected override void OnCreate (Bundle bundle)
{
    base.OnCreate (bundle);
    SetContentView (Resource.Layout.Main);
    var toolbar = FindViewById<Toolbar> (Resource.Id.toolbar);
    //Toolbar will now take on default Action Bar characteristics
    SetActionBar (toolbar);
    //You can now use and reference the ActionBar
    ActionBar.Title = "Hello from Toolbar";
}

未解决的问题包括:base,setContentView,FindViewById,Toolbar,Resource。我不能导入它们。

1 个答案:

答案 0 :(得分:1)

&#34; setContentView&#34;的第一个字母,&#34; findViewById&#34;要小。 findViewById()方法接受如下参数:findViewById(R.id.your_view_name);

而不是像findViewById(Resource.Id.your_view_name);

基本上,尝试将Resource.Id.your_view更改为&#34; R.id.your_view&#34;。另外,将方法名称的第一个字母设为小