我是靠谱客的博主 孤独白开水,最近开发中收集的这篇文章主要介绍settext 在android的作用,setTextAppearance()在Android上不起作用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

我已經嘗試以編程方式在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上不起作用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部