Basbous
Basbous

Reputation: 3925

How to expand android ActionBar?

How can i expand the actionbar like PlayNewsstand application and the image below :

enter image description here

enter image description here

Upvotes: 1

Views: 1537

Answers (2)

Basbous
Basbous

Reputation: 3925

What i am looking for found it here.

Upvotes: 1

AndroidHacker
AndroidHacker

Reputation: 3596

For your concern try using this in your manifest file ..

yourapp:showAsAction="ifRoom"

Ex:

<menu xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:yourapp="http://schemas.android.com/apk/res-auto" >
    <item android:id="@+id/action_search"
          android:icon="@drawable/ic_action_search"
          android:title="@string/action_search"
          yourapp:showAsAction="ifRoom"  />
    ...
</menu>

Complete reference :: http://developer.android.com/guide/topics/ui/actionbar.html

Upvotes: 0

Related Questions