我在当前活动的 viewpager 中为布局充气,但我需要设置此布局的 textview 文本,以便我可以充气它并显示我正在做的新文本:
LayoutInflater inflater = (LayoutInflater) collection.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.mylayout, null);
TextView txt=(TextView)findViewById(R.id.content);
txt.setText(cursor.getString(cursor.getColumnIndex("Content")));
但这给了我一个空指针异常,我该如何解决这个问题如何设置我不在的布局的 textview 的文本,这意味着来自该布局之外..