I use greendroid to implement to actionbar under api 11.
Now i have a strange behaviour in my MainView (the startview works well)
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));
Looking:
The Actionbar text is empty and no home button. please help