我可以设置这样的风格
ImageView
android:id="@+id/blah"
style="@style/mystyle"
/>
但是有没有办法在运行时为View设置样式?喜欢
ImageView iv = (ImageView)findViewById(...);
iv.setStyle(R.style.myotherstyle);
答案 0 :(得分:2)
答案 1 :(得分:1)
不,遗憾的是,无法在运行时更改样式。最好的办法是在运行时一次设置一个属性(填充/边距/宽度/等)。