1

我想在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>

谁能帮我解决这个问题?

4

0 回答 0