Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android在代碼中四種設置控件背景顏色的方法(包括RGB)

android在代碼中四種設置控件背景顏色的方法(包括RGB)

編輯:關於Android編程

 

TextView tText=(TextView) findViewById(R.id.textv_name);
    //第1種:
    tText.setTextColor(android.graphics.Color.RED);//系統自帶的顏色類

    // 第2種:
    tText.setTextColor(0xffff00ff);//0xffff00ff是int類型的數據,分組一下0x|ff|ff00ff,0x是代表顏色整數的標記,ff是表示透明度,ff00ff表示顏色,注意:這裡ffff00ff必須是8個的顏色表示,不接受ff00ff這種6個的顏色表示。
     
    //第3種:
    tText.setTextColor(android.graphics.Color.parseColor(#87CEFA)) ; //還是利用Color類;


    //第4種:
    tText.setTextColor(this.getResources().getColor(R.color.red));
    
    
    /*通過獲得資源文件進行設置。根據不同的情況R.color.red也可以是R.string.red或者R.drawable.red,
     * 當然前提是需要在相應的配置文件裡做相應的配置,如(xml 標簽):
     * 		
     * #FF0000
        #FF0000
        #FF0000*/
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved