[Android]程式碼實現ColorStateList及StateListDrawable

翻越高山發表於2017-06-09


from : 

 http://blog.csdn.net/sodino/article/details/6797821


優點:靈活,減少xml的編寫。應用在TextView的文字時,亦避免使用了OnTouchListener。

用途:動態設定TextView、Button、ImageView等元件在不同狀態下的背景/前景顯示效果。


參考:

[AndroidOpenSource]\frameworks\base\core\Java\Android\view\view.xml

[AndroidOpenSource]\frameworks\base\core\res\res\values\public.xml


效果圖如下:


程式碼如下:

[java] view plain copy
  1. package lab.sodino.statelist;  
  2.   
  3. import android.app.Activity;  
  4. import android.content.Context;  
  5. import android.content.res.ColorStateList;  
  6. import android.graphics.drawable.Drawable;  
  7. import android.graphics.drawable.StateListDrawable;  
  8. import android.os.Bundle;  
  9. import android.view.View;  
  10. import android.view.View.OnClickListener;  
  11. import android.widget.TextView;  
  12.   
  13. /** 
  14.  * 對TextView設定ColorStateList使其在Normal、Pressed、Focused、Unable四種狀態下顯示不同的顏色。<br/> 
  15.  * StateListDrawable可直接使用圖片應用在相似場合。 
  16.  */  
  17. public class ActColorStateList extends Activity implements OnClickListener {  
  18.     private TextView txtShow;  
  19.   
  20.     public void onCreate(Bundle savedInstanceState) {  
  21.         super.onCreate(savedInstanceState);  
  22.         setContentView(R.layout.main);  
  23.         txtShow = (TextView) findViewById(R.id.txtShow);  
  24.         txtShow.setText("Sodino\nNormal:0xffffffff\nPressed:0xffffff00\nFocused:0xff0000ff\nUnable:0xffff0000");  
  25.         txtShow.setTextColor(createColorStateList(0xffffffff0xffffff000xff0000ff0xffff0000));  
  26.         txtShow.setOnClickListener(this);  
  27.     }  
  28.   
  29.     /** 對TextView設定不同狀態時其文字顏色。 */  
  30.     private ColorStateList createColorStateList(int normal, int pressed, int focused, int unable) {  
  31.         int[] colors = new int[] { pressed, focused, normal, focused, unable, normal };  
  32.         int[][] states = new int[6][];  
  33.         states[0] = new int[] { android.R.attr.state_pressed, android.R.attr.state_enabled };  
  34.         states[1] = new int[] { android.R.attr.state_enabled, android.R.attr.state_focused };  
  35.         states[2] = new int[] { android.R.attr.state_enabled };  
  36.         states[3] = new int[] { android.R.attr.state_focused };  
  37.         states[4] = new int[] { android.R.attr.state_window_focused };  
  38.         states[5] = new int[] {};  
  39.         ColorStateList colorList = new ColorStateList(states, colors);  
  40.         return colorList;  
  41.     }  
  42.   
  43.     /** 設定Selector。 */  
  44.     public static StateListDrawable newSelector(Context context, int idNormal, int idPressed, int idFocused,  
  45.             int idUnable) {  
  46.         StateListDrawable bg = new StateListDrawable();  
  47.         Drawable normal = idNormal == -1 ? null : context.getResources().getDrawable(idNormal);  
  48.         Drawable pressed = idPressed == -1 ? null : context.getResources().getDrawable(idPressed);  
  49.         Drawable focused = idFocused == -1 ? null : context.getResources().getDrawable(idFocused);  
  50.         Drawable unable = idUnable == -1 ? null : context.getResources().getDrawable(idUnable);  
  51.         // View.PRESSED_ENABLED_STATE_SET  
  52.         bg.addState(new int[] { android.R.attr.state_pressed, android.R.attr.state_enabled }, pressed);  
  53.         // View.ENABLED_FOCUSED_STATE_SET  
  54.         bg.addState(new int[] { android.R.attr.state_enabled, android.R.attr.state_focused }, focused);  
  55.         // View.ENABLED_STATE_SET  
  56.         bg.addState(new int[] { android.R.attr.state_enabled }, normal);  
  57.         // View.FOCUSED_STATE_SET  
  58.         bg.addState(new int[] { android.R.attr.state_focused }, focused);  
  59.         // View.WINDOW_FOCUSED_STATE_SET  
  60.         bg.addState(new int[] { android.R.attr.state_window_focused }, unable);  
  61.         // View.EMPTY_STATE_SET  
  62.         bg.addState(new int[] {}, normal);  
  63.         return bg;  
  64.     }  
  65.   
  66.     @Override  
  67.     public void onClick(View v) {  
  68.         if (v == txtShow) {  
  69.             txtShow.setEnabled(false);  
  70.         }  
  71.     }  
  72. }  

相關文章