android 可以在程序代码中设置样式:style

<style name="text_style">
<item name="android:textStyle">bold</item>
<item name="android:textSize">18sp</item>
</style>
xml使用:
<TextView
style="@style/button_style"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
</TextView>
java代码使用:
TextView txtname = new TextView(this);
txtname.setTextAppearance(this, R.style.text_style);
上一篇:You don't seem to have 'make' or 'gmake' in your PATH


下一篇:构建后端第6篇之---java 多态的本质 父类引用 指向子类实现