FindViewById返回null(只有一个,在OnCreate内部和SetContentView之后)

时间:2018-05-17 13:45:27

标签: c# android xamarin xamarin.android

我正在尝试将自己创建的工具栏放入中心标题。它与基本工具栏完全一致,但出于不同的目的,我不得不切换到Android.Support.V7,现在由于FindViewById现在返回null而无法正常工作

这是我的代码:(正在使用Xamarin.Android)

MainPage.axml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

  <android.support.v7.widget.Toolbar
    android:id="@+id/toolbarMain"
    android:minHeight="?attr/actionBarSize"
    android:background="?attr/colorAccent"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />
  <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
        <ImageView
            android:id="@+id/imageView4"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:adjustViewBounds="true"
            android:src="@drawable/bitmap_homepage" />
        <ListView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:id="@+id/ListSpaces"
            android:focusable="false" />
    </LinearLayout>
</LinearLayout>

toolbarMain.xml

<?xml version="1.0" encoding="utf-8" ?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/toolbarMain"
   android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:minHeight="?attr/actionBarSize"
    android:background="?attr/colorPrimary"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

  <TextView
      android:id="@+id/toolbarMain_Name"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="center" />

</android.support.v7.widget.Toolbar>

MainPageActivity.cs

public static string TitleFolder = "Welcome";

        protected override void OnCreate(Bundle savedInstanceState) {
            base.OnCreate(savedInstanceState);

            SetContentView(Resource.Layout.MainPage);

            //Put toolbar
            var toolbar = FindViewById<Toolbar>(Resource.Id.toolbarMain);
            var ToolTitle = FindViewById<TextView>(Resource.Id.toolbarMain_Name);
            SetSupportActionBar(toolbar);
            SupportActionBar.SetDisplayShowTitleEnabled(false);
            ToolTitle.Text = TitleFolder;
            }

Visual Studio给出的错误是

  

System.NullReferenceException:未将对象引用设置为实例   一个对象。

在查看变量时,程序正在Ressource.Designer中查找所有ID,但返回null到Tooltitle,但toolbar绝对没问题。

有什么想法吗?它慢慢地让我发疯,因为它在标准工具栏上工作得很好...... 非常感谢

2 个答案:

答案 0 :(得分:1)

V7支持工具栏有不同的设置,请致电:

setSupportActionBar(findViewById(R.id.toolbarMain))

详细了解https://developer.android.com/training/appbar/setting-up

答案 1 :(得分:0)

您正在将contentview设置为MainPage.xml,但toolbarMain_Name不是该布局的元素。您需要将textview添加到MainPage.xml或用include语句替换工具栏的声明。

<include layout="@layout/your_toolbar_layout_name"/>