web-dev-qa-db-ja.com

Honeycombのメニュー項目をActionBarの左側に配置する

HonycombのActionBarの左側にいくつかのメニュー項目を配置したいのですが、これを行う方法を示すドキュメントは見つかりませんでした。連絡先アプリはナビゲーションバーのすぐ左に検索があるため、可能性がありそうです。メニュー項目を左側に設定する方法についてのアイデアはありますか?

31
Samm Bennett

ActionBarは、アプリケーションアイコンと通常のActionBarアイコンの間のカスタムレイアウトをサポートしています。例:

// Set the custom section of the ActionBar with Browse and Search.
ActionBar actionBar = getActionBar();
mActionBarView = getLayoutInflater().inflate(R.layout.action_bar_custom, null);
actionBar.setCustomView(mActionBarView);
actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
16
Samm Bennett

夢のように私のために働くものはここにあります:アクティビティで私はこれを持っています:

//hiding default app icon
ActionBar actionBar = getActionBar();
actionBar.setDisplayShowHomeEnabled(false);
//displaying custom ActionBar
View mActionBarView = getLayoutInflater().inflate(R.layout.my_action_bar, null);
actionBar.setCustomView(mActionBarView);
actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM)

my_action_bar.xml:

<RelativeLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    Android:layout_width="match_parent"
    Android:layout_height="match_parent"
    Android:background="@color/turquoise">

    <ImageButton 
        Android:id="@+id/btn_slide"
        Android:layout_height="wrap_content"
        Android:layout_width="wrap_content"
        Android:background="@null"
        Android:scaleType="centerInside"
        Android:src="@drawable/btn_slide"
        Android:paddingRight="50dp"
        Android:onClick="toggleMenu"
        Android:paddingTop="4dp"/>
</RelativeLayout>
15
Egis