动态Android按钮样式

时间:2013-05-20 11:52:15

标签: java android-view android-button

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

有人可以帮我解决这个问题吗?

0 个答案:

没有答案