我希望editText
在第二个片段中具有onClickListener
其他操作,例如对话任务。
但是当我在按钮setListener
上EditText
或也在按钮上时,我的程序崩溃了。
例外是:NullPointerExceptions
有可能看不到布局???如果是,为什么?
我有 3 个选项卡布局和 1 个布局,例如寻呼机,我在寻呼机的活动中执行此操作。
'name' 是我的编辑文本
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
Bundle args = getArguments();
int position = args.getInt(ARG_OBJECT);
int tabLayout = 0;
switch (position) {
case 0:
tabLayout = R.layout.priority_fields;
break;
case 1:
tabLayout = R.layout.authors_fields;
name.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
ViewGroup.LayoutParams params = new ViewGroup.LayoutParams(FILL_PARENT, WRAP_CONTENT);
ll.setLayoutParams(params);
ll.addView(name);
ll.addView(surname);
authors.addView(ll);
}
});
break;