I am using the actionbarsherklock library with a custom action bar that looks like this:

My user interface:
ActionBar actionBar = getSupportActionBar(); actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM); // Do any other config to the action bar getSupportActionBar().setDisplayShowTitleEnabled(false); getSupportActionBar().setDisplayShowHomeEnabled(false); getSupportActionBar().setDisplayHomeAsUpEnabled(true); // set custom view View actionBarView = getLayoutInflater().inflate( R.layout.action_bar_default, null); View btnMenuLeft= actionBarView.findViewById(R.id.btnMenuLeft); btnMenuLeft.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { toggle(); } }); View btnMenuShare= actionBarView.findViewById(R.id.btnMenuShare); ActionBar.LayoutParams params = new ActionBar.LayoutParams( LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT); actionBar.setCustomView(actionBarView, params); // Hide the home icon actionBar.setIcon(android.R.color.transparent); actionBar.setLogo(android.R.color.transparent);
And here is the custom layout:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/nav_bar_bg" android:gravity="center" android:orientation="horizontal" > <ImageButton android:id="@+id/btnMenuLeft" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/list_btn" android:clickable="false" android:duplicateParentState="true" android:focusable="false" /> <ImageView android:layout_width="0dp" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_weight="1" android:src="@drawable/app_logo" /> <ImageButton android:id="@+id/btnMenuShare" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/action_btn" android:clickable="false" android:duplicateParentState="true" android:focusable="false" />
The problem is that I want to add a menu above the stream to share a button like this:

Please tell me how I can do this using the custom actions panel.
source share