Android でカスタム タイトル バーを備えたアクション バー タブが必要です。私はこのコードを使用しています
actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
actionBar.setCustomView(R.layout.customtitle);
誰でも私を助けることができますか?
Android でカスタム タイトル バーを備えたアクション バー タブが必要です。私はこのコードを使用しています
actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
actionBar.setCustomView(R.layout.customtitle);
誰でも私を助けることができますか?
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));