7

アクション バーにカスタム ビューを表示しようとしています。SherlockActionBar を使用しています。これが私のコードです。カスタム ビューが表示されません。私は何を間違っていますか?

View customNav = LayoutInflater.from(this).inflate(R.layout.my_layout, null);
getSupportActionBar().setDisplayShowTitleEnabled(false);
getSupportActionBar().setCustomView(customNav);
4

1 に答える 1

15

最初にカスタムビューを有効にする必要があります。

    getSupportActionBar().setDisplayShowCustomEnabled(true); // missing in your code
    getSupportActionBar().setCustomView(customNav);
于 2012-12-10T14:41:28.787 に答える