14

私はそれをするために使用actionbarsherlockしています。アクションバーに必要なものの例:
[ログイン] [会社のロゴ] [フィルター]

アクションバーに表示される例:
      [LOGIN] [COMPANY LOGO] [FILTER]

ログイン ボタン、会社のロゴ、フィルター ボタン (ドローアブルの形式) を res/menu の .xml に作成しましたactivity_main.xml。ただし、アクションバーのこれらのボタンは、デフォルトのアプリケーションロゴを削除して次のように設定しても、完全に左にシフトすることはできませんfalse:

getSupportActionBar().setDisplayShowTitleEnabled(false);
getSupportActionBar().setDisplayShowHomeEnabled (false);

メニューの私のコードは次のactivity_main.xmlとおりです。

<item android:id="@+id/login"
      android:icon="@drawable/login_btn"
      android:layout_gravity="left"
      android:showAsAction="always"/>

<item android:id="@+id/logo"
      android:icon="@drawable/logo_btn"
      android:layout_gravity="center"
      android:showAsAction="always"/>

<item android:id="@+id/filter"
      android:icon="@drawable/filter_btn"
      android:layout_gravity="right"
      android:showAsAction="always"/>
4

3 に答える 3

34

そのためのカスタムビューを作成する必要があります。例(layout/ab_custom.xml):

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="match_parent"
    android:layout_gravity="fill_horizontal" >

    <ImageButton
        android:id="@+id/btn1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:src="@drawable/left" />

    <ImageButton
        android:id="@+id/btn2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:src="@drawable/center" />

    <ImageButton
        android:id="@+id/btn3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:src="@drawable/right" />

</RelativeLayout>

次に、アクティビティのonCreate呼び出しでこのメソッドを呼び出します。

private void showActionBar() {
        LayoutInflater inflator = (LayoutInflater) this
            .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    View v = inflator.inflate(R.layout.ab_custom, null);
    ActionBar actionBar = getSupportActionBar();
    actionBar.setDisplayHomeAsUpEnabled(false);
    actionBar.setDisplayShowHomeEnabled (false);
    actionBar.setDisplayShowCustomEnabled(true);
    actionBar.setDisplayShowTitleEnabled(false);
    actionBar.setCustomView(v);
}

アイテムを管理するには、次を使用します。

 @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        switch (item.getItemId()) {
        case R.id.btn1:
            //left button, do something
            return true;
        case R.id.btn2:
            //center button
            return true;
        case R.id.btn3:
            // right button
            return true;
        default:
            return super.onOptionsItemSelected(item);
        }
    }

編集:私の答えを修正しました。を使用することをお勧めしますRelativeLayout as parent

于 2012-10-19T17:27:05.567 に答える
0

アイテムをRelativeLayout内にラップします。次に、以下を使用します。

android:layout_alignParentLeft
android:layout_alignParentCenter
android:layout_alignParentRight
于 2012-10-19T17:26:32.323 に答える