我想在java中设置一个按钮样式。需要放置背景图像和外观更改。
但它没有采用这种风格:
LinearLayout linearLayout = (LinearLayout)findViewById(R.id.dynamicpan);
Button btn = new Button(this,null,R.style.productButton);
btn.setText(arrProducts[i].toString());
btn.setBackgroundResource(R.drawable.button_style);
linearLayout.addView(btn);
<style name="productButton">
<item name="android:textColor">#FFFFFF</item>
<item name="android:textSize">25sp</item>
</style>
有人可以帮我解决这个问题吗?