我正在使用 ListActivity,listview。
listView = getListView();
只是完美地工作。我将页脚视图添加为
LayoutInflater inflater = getLayoutInflater();
listView.addFooterView( inflater.inflate( R.layout.footer, null ), null, false);
一切都很闪亮但很难看,所以我想将此页脚视图(仅包含 1 个编辑文本和仅 1 个按钮)添加到 listView 的标题中
LayoutInflater inflater = getLayoutInflater();
listView.addHeaderView( inflater.inflate( R.layout.footer, null ), null, false);
突然一切都出错了,我立即得到 RuntimeException。
Suspended(exception RuntimeException)
ActivityThread.performLaunchActivity(ActivityThread$ActivityRecord, Intent)
ActivityThread.handleLaunchActivity(ActivityThread$ActivityRecord, Intent)
ActivityThread.access$2200(ActivityThread, Activity$ActiviyRecord, Intent),
so on..
为什么会抛出异常?addFooterView 和 addHeaderView 有什么不同,如何将 Header 添加到 ListActivity ?
更新
因此,正如您可以在评论中看到的那样,我的 logcat 仍然无法正常工作,但此时我只是尝试了下一个:
} catch(Exception e){
Writer result = new StringWriter();
PrintWriter printWriter = new PrintWriter(result);
e.printStackTrace(printWriter);
String error = result.toString();
}
然后我放断点,我可以在表达式部分读取错误。它说 :
java.lang.IllegalStateException: Cannot add header view to list -- setAdapter has already been called.
这对我们所有人都有启发。更改命令后,它可以正常工作。