更新 AlertDialog的 TextView结果

每次在对话框中设置textView的结果,应用会崩溃。对话框是通过链接包含textView的xml,并且这个textView就是需要更新的。

AlertDialog.Builder alert = new AlertDialog.Builder(this); 
    LayoutInflater factory = LayoutInflater.from(this);        
    resultOne=(TextView)findViewById(R.id.resultOne); //resultone is a textview in xml dialog

    resultOne.setText("hello");  //this code is making the app close

    final View textEntryView = factory.inflate(R.layout.dialog, null);
    alert.setView(textEntryView);
    alert.show();


蛊毒传说
浏览 960回答 2
2回答

阿波罗的战车

调用顺序有问题,应该是调用final View textEntryView = factory.inflate(R.layout.dialog, null);resultOne=(TextView)textEntryView.findViewById(R.id.resultOne); //resultone is a textview in xml dialog再去调用alert.setView(textEntryView);
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java