概述
我已經嘗試以編程方式在RadioButton中設置樣式的文本,但它們只設置大小和顏色。但是,如果我通過XML設置風格,它可以正常工作。我嘗試了TextView同樣的情況。我究竟做錯了什麼?setTextAppearance()在Android上不起作用
Java代碼:
public class YourProgOneApps extends Activity implements OnClickListener {
RadioGroup radioGender, radioTarget, radioWhere;
RadioButton man, woman, build_muscle, fat_loss, keep_in_good_shape, gym, home;
TextView textView2;
Button btnExeProgOne;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.your_prog1);
radioGender = (RadioGroup) findViewById(R.id.radioGender);
man = (RadioButton) findViewById(R.id.man);
woman = (RadioButton) findViewById(R.id.woman);
textView2 = (TextView) findViewById(R.id.textView2);
textView2.setTextAppearance(getApplicationContext(), R.style.r
最后
以上就是孤独白开水为你收集整理的settext 在android的作用,setTextAppearance()在Android上不起作用的全部内容,希望文章能够帮你解决settext 在android的作用,setTextAppearance()在Android上不起作用所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复