在Xamarin Android Nougat 7.1中,我可以使用以下命令在导航抽屉中设置总费用:
TextView countDownTextView = FindViewById<TextView>(Resource.Id.txtTotale);
countDownTextView.Text = "Tot.€: " + tot_rifornimenti.ToString();
在奥利奥(Oreo)中不起作用,并在以下位置修改我的代码:
TextView aa = (TextView)LayoutInflater.Inflate(Resource.Layout.headerdrawerlayout, null).FindViewById(Resource.Id.txtTotale);
aa.Text = "Tot.€: " + tot_rifornimenti.ToString();
为什么看不到?你能帮我吗?