0

我使用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));

看着:

在此处输入图像描述

操作栏文本为空且没有主页按钮。请帮忙

4

1 回答 1

0

您可以尝试设置标题和标题的颜色

getActionBar().setTitle("Title")

颜色也是一样。还尝试通过 RGB 值设置颜色。

我不能保证这会奏效,因为我的操作栏不使用 greendroid。但我知道你不使用 actionbarsherlock + greendroid,因为它们只与一个技巧兼容(有点黑客 xD)

于 2012-04-06T17:40:07.370 回答