我使用greendroid在api 11下实现actionbar。
现在我的 MainView 中有一个奇怪的行为(startview 运行良好)
public class MainView extends GDActivity {
private boolean ison = false;
private FinderThread finder;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
//this.getActionBar().removeViewAt(0);
setActionBarContentView(R.layout.mainlayout);
getActionBar().setBackgroundColor(Color.parseColor("#bf27c3"));
setTitle("TEST");
setTitleColor(Color.WHITE);
addActionBarItem(getActionBar().newActionBarItem(NormalActionBarItem.class).setDrawable(R.drawable.person));
看着:
操作栏文本为空且没有主页按钮。请帮忙