2

Android でカスタム タイトル バーを備えたアクション バー タブが必要です。私はこのコードを使用しています

actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
actionBar.setCustomView(R.layout.customtitle);

誰でも私を助けることができますか?

4

1 に答える 1

0

http://developer.android.com/reference/android/app/ActionBar.htmlによると

setCustomView(View view, ActionBar.LayoutParams layoutParams)

この関数は、2 番目のパラメーターで ActionBar.LayoutParams パラメーターを受け取ります。だからあなたはそれを行うことができます

final View actionCustomView = getLayoutInflater().inflate(
            R.layout.custom_action_bar, null);
actionBar.setCustomView(actionCustomView, new ActionBar.LayoutParams(
            android.view.ViewGroup.LayoutParams.MATCH_PARENT,
            android.view.ViewGroup.LayoutParams.WRAP_CONTENT));
于 2013-06-13T09:29:49.503 に答える