Actionbar样式溢出菜单项

use*_*363 4 android themes android-actionbar

我需要制作完全自定义的溢出菜单项(不同的背景颜色,如图所示).

https://dl.dropbox.com/u/7771649/overflow.png

可能吗?

Moh*_*ran 5

最后一天,我必须实施Action Bar Sherlock.我的案子和你的案子一样.我为我的导航List实现了Adapter.Let说:

public class MyNavigationAdapter extends BaseAdapter {
    Context mContext = null;
    String[] mTitles;
    LayoutInflater mLayOutInflater = null;

    public MyNavigationAdapter(Context context, String[] titles) {
        this.mContext = context;
        this.mTitles = titles;
        mLayOutInflater = (LayoutInflater) context
                .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    }

    @Override
    public int getCount() {
        return mTitles.length;
    }

    @Override
    public Object getItem(int arg0) {
        return null;
    }

    @Override
    public long getItemId(int arg0) {
        return 0;
    }

    @Override
    public View getView(int position, View view, ViewGroup parent) {
        if (view == null)
            view = mLayOutInflater.inflate(R.layout.my_list_custom_row, parent,false);
        TextView rowName = (TextView) view.findViewById(R.id.title);
        rowName.setText(mTitles[position]);
        rowName.setBackground(your desire drawle);// yo

u can also set color etc.
//OR

if(position%2==0)
        rowName.setBackgroundColor(Color.RED);
        else
            rowName.setBackgroundColor(Color.BLUE);
        return view;
    }

}
Run Code Online (Sandbox Code Playgroud)

在此之后,您必须在Activity onCreate方法中编写这些代码行.

  ActionBar actionBar = getActionBar();
    actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_LIST);
actionBar.setListNavigationCallbacks(mNavigationAdapterObj, mNavigationListner);
Run Code Online (Sandbox Code Playgroud)

了解更多信息.请在这里咨询.