一. BluetoothChat 编译运行错误
//getActionBar()==null
private finalvoid setStatus(int resId)
{
final ActionBar actionBar = getActionBar();
actionBar.setSubtitle(resId);
}
publicvoid onCreate(Bundle savedInstanceState)
{
...........................
getWindow().requestFeature(Window.FEATURE_ACTION_BAR);//在setContentView(R.layout.main)前面增加该条语句
// Set up the window layout
setContentView(R.layout.main);
..................
}