ImageButton
を動的に作成してスタイルを適用しようとしています。
これが私のスタイルです:
<style name="ActionBarActionButton">
<item name="android:layout_width">30dp</item>
<item name="android:layout_height">fill_parent</item>
<item name="android:background">@drawable/action_button</item>
</style>
ボタンの作成は次のとおりです。
ImageButton actionButton = new ImageButton(context, null, R.style.ActionBarActionButton);
スタイルのパラメーターが適用されていないため、まったく効果がないようです。