0

我想展示一个小吃店:

Snackbar s = Snackbar
                .Make(Window.DecorView.RootView, text, Snackbar.LengthLong)
                .SetAction("Retry", view =>
                {
                    /* TODO */
                });
s.Show();

调用该方法时,我得到一个NullReferenceException

你调用的对象是空的。

我究竟做错了什么?

4

1 回答 1

2

我们遇到了类似的问题。尽管我们遵循了文档,但我们不断收到 NullReferenceException,结果证明它是父布局视图。

就我而言,它是在我清理并构建了我的 Visual Studio 项目之后工作的。

请参阅下面的代码以供参考:

我有以下带有 id 参考loginView的父线性布局:

<?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"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:id="@+id/loginView"
    android:orientation="vertical" >
    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"
        android:orientation="vertical">

        <!-- omitted --> 

    </LinearLayout>
</LinearLayout>

接下来,我有一个具有以下方法的实用程序类:

/// <summary>
/// Show a snackbar notification on screen
/// </summary>
/// <param name="view">this is the parent container</param>
/// <param name="msg">message to show in the snackbar</param>
public static void ShowSnack(View view, string msg)
{            
    if(view != null)
    {
        try
        {
            Snackbar snackBar = Snackbar.Make(view, msg, Snackbar.LengthLong);
            snackBar.SetAction("Ok", (v) =>
            {
                Log.Info(TAG, "Action in view clicked");
            });
            snackBar.Show();
        }
        catch(Exception ex)
        {
            Log.Error(TAG, "Error occured when showing snackbar: " + ex.Message); 
        }                
    }
}

最后,我可以使用以下内容从我的活动中显示 SnackBar:

var view = FindViewById(Resource.Id.loginView);
AndroidUtil.ShowSnack(view, "Hey there it works!");

更多信息:

我们目前正在使用 Visual Studio 2017 RC。我们注意到的一件事是,我们必须经常清理项目,因为这是经常发生的事情。

于 2017-02-08T16:38:38.850 回答