Xamarin FindViewById NullReference异常
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Xamarin FindViewById NullReference异常相关的知识,希望对你有一定的参考价值。
我有一个问题,每当我尝试将一个事件处理程序添加到一个按钮时我得到一个空引用异常,我试图创建一个带有DialogFragment的弹出窗口,其中我调用的视图PopUpWindow将显示在屏幕上,但是当我尝试通过id访问按钮并为其分配事件处理程序时,例如:
Button btnCopyText = dp.view.FindViewById<Button>(Resource.Id.btnCopyText);
btnCopyText.Click += BtnCopyText_Click;
然后我得到一个空引用异常,任何人都可以帮助我,下面是必要的代码。
class dialog_Popup:DialogFragment
{
public View view;
public override View OnCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
{
base.OnCreateView(inflater, container, savedInstanceState);
view = inflater.Inflate(Resource.Layout.PopupWindow, container, false);
return view;
}
public override void OnActivityCreated(Bundle savedInstanceState)
{
Dialog.Window.RequestFeature(WindowFeatures.NoTitle);
base.OnActivityCreated(savedInstanceState);
}
public class MainActivity : Activity
{
protected override void OnCreate(Bundle bundle)
{
//some code
}
public string itemclicked;
dialog_Popup dp;
private void Lv_ItemLongClick(object sender, AdapterView.ItemLongClickEventArgs e)
{
//View popUpView = LayoutInflater.Inflate(Resource.Layout.PopupWindow,
//null); // inflating popup layout
Button height = FindViewById<Button>(Resource.Id.btnCopyText);
//Then: change the width of the button
FragmentTransaction transaction = FragmentManager.BeginTransaction();
dp = new dialog_Popup();
dp.Show(transaction,"Popup");
itemclicked = lv.GetItemAtPosition(e.Position).ToString();
Button btnCopyText = dp.view.FindViewById<Button>(Resource.Id.btnCopyText);
btnCopyText.Click += BtnCopyText_Click;
Button btnSaveCurrentAya = dp.view.FindViewById<Button>(Resource.Id.btnSaveCurrentAya);
btnSaveCurrentAya.Click += BtnSaveCurrentAya_Click;
Button btnsavingsAya = dp.view.FindViewById<Button>(Resource.Id.savingsAya);
btnsavingsAya.Click += BtnsavingsAya_Click;*
Button btnShareFB = dp.view.FindViewById<Button>(Resource.Id.fbShare);
btnShareFB.Click += BtnShareFB_Click;
}
}
答案
FindViewById可能出现NullReferenceException的原因有以下几种:
- 布局不包含id - >检查正确的布局和id是否被充气/引用
- 像Button这样的类型不正确
在您的情况下,请检查dp和dp.view是否为空。
这里要提到的一点是,在主视图中引用片段的控制并不是最好的实现。片段是应该能够独立生活的东西。所以我看到了两种实现所需行为的方法:
1)片段得到一个事件,你听这个。这意味着您的主视图将包含保存内容的逻辑。
2)逻辑进入片段。
以上是关于Xamarin FindViewById NullReference异常的主要内容,如果未能解决你的问题,请参考以下文章
为啥 findViewById 搜索 RecyclerView 时返回 null?
findViewById 返回 null (TextView) [重复]