我有一个扩展类ListActivity
,我正在尝试使用下面的代码隐藏默认的 TitleBar(我认为它称为 ActionBar)。它适用于常规活动,但不适用于ListActivity
. 在这种情况下我如何完成相同的任务?
public class MyClass extends ListActivity{
@Override
public void onCreate(Bundle b) {
requestWindowFeature(Window.FEATURE_NO_TITLE);
super.onCreate(b);
// Tried Window.FEATURE_NO_TITLE here as well
setContentView(R.layout.activity_myclass);
getActionBar().setDisplayHomeAsUpEnabled(true);
}
}
结果是 NullPointerException。如果您需要,完整的错误堆栈跟踪在这里:http: //pastebin.com/VLR5dE8m