zoukankan      html  css  js  c++  java
  • 通过Button改变TextView文字颜色

    res/layout/main.xml

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        >
    <TextView  
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:id="@+id/tvText" android:text="@string/tv_name"/>
    <Button android:layout_width="wrap_content" 
    		android:id="@+id/btnChangeColor" 
    		android:layout_height="wrap_content" 
    		android:text="@string/btn_name"></Button>
    </LinearLayout>

    src/ex03_12.java

    package gphone.ex03_12;
    
    
    import android.app.Activity;
    import android.graphics.Color;
    import android.os.Bundle;
    import android.view.View;
    import android.widget.Button;
    import android.widget.TextView;
    
    public class EX03_12 extends Activity {
    	Button btnChangeColor=null;
    	TextView tvText=null;
    	//用于存储颜色
    	int[] colors=null;
    	int color_index;
        /** Called when the activity is first created. */
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.main);
            //存储颜色
            colors=new int[]{
            		Color.RED,
            		Color.BLUE,
            		Color.YELLOW,
            		Color.GREEN,
            		Color.GRAY
            };
            color_index=0;
            tvText=(TextView)EX03_12.this.findViewById(R.id.tvText);
            btnChangeColor=(Button)EX03_12.this.findViewById(R.id.btnChangeColor);
            
            btnChangeColor.setOnClickListener(new Button.OnClickListener(){
            	
    			@Override
    			public void onClick(View v) {
    				// 按顺序显示定义的颜色
    				if(color_index<colors.length)
    				{
    					tvText.setTextColor(colors[color_index]);				}
    				else
    				{
    					color_index=0;
    color_index++;
    } } }); } }

    运行结果

    1

    image image image

  • 相关阅读:
    BZOJ 2002 [Hnoi2010]Bounce 弹飞绵羊 ——Link-Cut Tree
    BZOJ 2049 [Sdoi2008]Cave 洞穴勘测 ——Link-Cut Tree
    hdu
    hdu
    hdu
    hdu
    hdu
    hdu
    hdu
    hdu
  • 原文地址:https://www.cnblogs.com/AlexCheng/p/2120044.html
Copyright © 2011-2022 走看看