Android编程设置TextView颜色setTextColor用法实例

本文实例讲述了Android编程设置TextView颜色setTextColor用法。分享给大家供大家参考,具体如下:

android中设置TextView的颜色有方法setTextColor,这个方法被重载了,可以传入两种参数。

public void setTextColor(int color) {
 mTextColor = ColorStateList.valueOf(color);
 updateTextColors();
}
public void setTextColor(ColorStateList colors) {
 if (colors == null) {
  throw new NullPointerException();
 }
 mTextColor = colors;
 updateTextColors();
}

下边就分别写出怎么使用这两个方法设置TextView的颜色:

TextView tv = new TextView(this);
tv.setText("Test set TextView's color.");
//方案一:代码中通过argb值的方式
tv.setTextColor(Color.rgb(255, 255, 255));

这种方法也就是传入int color值,这个int不是R文件中自动分配的int值,所以要注意。这是Color类中的静态方法构造出来的颜色int值。

Resources resource = (Resources) getBaseContext().getResources();
ColorStateList csl = (ColorStateList) resource.getColorStateList(R.color.my_color);
if (csl != null) {
 tv.setTextColor(csl);
}

这种方法是通过ColorStateList得到xml中的配置的颜色的。好多需要xml中配置的都要类似这样的映射xml文件。

还有种方法:

XmlResourceParser xrp = getResources().getXml(R.color.my_color);
try {
 ColorStateList csl = ColorStateList.createFromXml(getResources(), xrp);
 tv.setTextColor(csl);
} catch (Exception e) {
}

全部代码:

package com.txlong;
import android.app.Activity;
import android.graphics.Color;
import android.os.Bundle;
import android.widget.TextView;
public class ListViewDemoActivity extends Activity {
 // private ListView listView;
 /** Called when the activity is first created. */
 @Override
 public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  TextView tv = new TextView(this);
  tv.setText("Test set TextView's color.");
  //方案一:通过ARGB值的方式
  /**
   * set the TextView color as the 0~255's ARGB,These component values
   * should be [0..255], but there is no range check performed, so if they
   * are out of range, the returned color is undefined
   */
//  tv.setTextColor(Color.rgb(255, 255, 255));
  /**
   * set the TextView color as the #RRGGBB #AARRGGBB 'red', 'blue',
   * 'green', 'black', 'white', 'gray', 'cyan', 'magenta', 'yellow',
   * 'lightgray', 'darkgray'
   */
  tv.setTextColor(Color.parseColor("#FFFFFF"));
  /** 原来不知道有上边的方法,就用这个笨笨方法了 */
//  String StrColor = null;
//  StrColor = "FFFFFFFF";
//  int length = StrColor.length();
//  if (length == 6) {
//   tv.setTextColor(Color.rgb(
//     Integer.valueOf(StrColor.substring(0, 2), 16),
//     Integer.valueOf(StrColor.substring(2, 4), 16),
//     Integer.valueOf(StrColor.substring(4, 6), 16)));
//  } else if (length == 8) {
//   tv.setTextColor(Color.argb(
//     Integer.valueOf(StrColor.substring(0, 2), 16),
//     Integer.valueOf(StrColor.substring(2, 4), 16),
//     Integer.valueOf(StrColor.substring(4, 6), 16),
//     Integer.valueOf(StrColor.substring(6, 8), 16)));
//  }
  //方案二:通过资源引用
//  tv.setTextColor(getResources().getColor(R.color.my_color));
  //方案三:通过资源文件写在String.xml中
//  Resources resource = (Resources) getBaseContext().getResources();
//  ColorStateList csl = (ColorStateList) resource.getColorStateList(R.color.my_color);
//  if (csl != null) {
//   tv.setTextColor(csl);
//  }
  //方案四:通过xml文件,如/res/text_color.xml
//  XmlPullParser xrp = getResources().getXml(R.color.text_color);
//  try {
//   ColorStateList csl = ColorStateList.createFromXml(getResources(), xrp);
//   tv.setTextColor(csl);
//  } catch (Exception e) {
//  }
  // listView = new ListView(this);
  //
  // Cursor cursor = getContentResolver().query(
  // Uri.parse("content://contacts/people"), null, null, null, null);
  //
  // startManagingCursor(cursor);
  //
  // ListAdapter listAdapter = new SimpleCursorAdapter(this,
  // android.R.layout.simple_expandable_list_item_2, cursor,
  // new String[] { "name", "name" }, new int[] {
  // android.R.id.text1, android.R.id.text2 });
  //
  // listView.setAdapter(listAdapter);
  // setContentView(listView);
  setContentView(tv);
 }
}

String.xml文件为:

<?xml version="1.0" encoding="utf-8"?>
<resources>
 <string name="hello">Hello World, ListViewDemoActivity!</string>
 <string name="app_name">ListViewDemo</string>
 <color name="my_color">#FFFFFF</color>
</resources>

/res/color/text_color.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:state_pressed="true" android:color="#FF111111"/>
  <!-- pressed -->
  <item android:state_focused="true" android:color="#FF222222"/>
  <!-- focused -->
  <item android:state_selected="true" android:color="#FF333333"/>
  <!-- selected -->
  <item android:state_active="true" android:color="#FF444444"/>
  <!-- active -->
  <item android:state_checkable="true" android:color="#FF555555"/>
  <!-- checkable -->
  <item android:state_checked="true" android:color="#FF666666"/>
  <!-- checked -->
  <item android:state_enabled="true" android:color="#FF777777"/>
  <!-- enabled -->
  <item android:state_window_focused="true" android:color="#FF888888"/>
  <!-- window_focused -->
</selector>

希望本文所述对大家Android程序设计有所帮助。

(0)

相关推荐

  • Android Color颜色过度计算实现代码

    Android Color颜色过度计算实现代码 在看自定义TypeEvaluator来计算属性动画的属性值时,用到了对颜色的过度计算,翻看了好多博客,找到了比较有优秀的解决方案,在此记录,以备后用. 实现效果图: 实现代码: /** * 根据fraction值来计算当前的颜色. */ private int getCurrentColor(float fraction, int startColor, int endColor) { int redCurrent; int blueCurrent

  • android 字体颜色选择器(ColorPicker)介绍

    primary_text_yellow.xml 复制代码 代码如下: <?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2008 The Android Open Source Project Licensed under the Apache License, Version 2.0 (the "License"); you may not use this f

  • Android编程设置TextView颜色setTextColor用法实例

    本文实例讲述了Android编程设置TextView颜色setTextColor用法.分享给大家供大家参考,具体如下: android中设置TextView的颜色有方法setTextColor,这个方法被重载了,可以传入两种参数. public void setTextColor(int color) { mTextColor = ColorStateList.valueOf(color); updateTextColors(); } public void setTextColor(Color

  • Android开发之TextView控件用法实例总结

    本文实例总结了Android开发之TextView控件用法.分享给大家供大家参考,具体如下: TextView控件可以向用户展现文本信息,我们可以设置该文本信息是否能编辑 1.TextView基本使用 在程序中创建TextView对象 在xml文件中布局使用 2.New Android Project-> Project name:TextView Build Target:Android 2.2 Application name:TextViewDemo Package name:com.b5

  • Android编程学习之抽象类AbsListView用法实例分析

    本文实例讲述了Android编程学习之抽象类AbsListView用法.分享给大家供大家参考,具体如下: 一.继承关系 public abstract class AbsListView extends AdapterView <T extendsAdapter> java.lang.Object          android.view.View                android.view.ViewGroup                       android.widg

  • Android编程布局(Layout)之AbsoluteLayout用法实例分析

    本文实例讲述了Android编程布局(Layout)之AbsoluteLayout用法.分享给大家供大家参考,具体如下: AbsoluteLayout,顾名思义,就是绝对位置的布局:也可以叫做坐标布局,也就是指定元素的绝对位置(或者叫绝对坐标值).这种布局简单直接,直观性强,但是由于手机屏幕尺寸差别比较大,使用绝对定位的适应性会比较差. <?xml version = "1.0" encoding = "utf-8"?> <AbsoluteLayo

  • Android编程四大组件之Activity用法实例分析

    本文实例讲述了Android编程四大组件之Activity用法.分享给大家供大家参考,具体如下: 这里详细介绍如何创建Activity.生命周期.内存管理.启动模式. 创建Activity 一.定义Activity 1. 定义Activity 定义类继承Activity 2.在AndroidManifest.xml的节点中声明<activity> 显式意图创建Activity三种方式方式 //第一种方式:构造函数,代码少 Intent intent1 =new Intent(this,NewA

  • Android编程中selector背景选择器用法实例分析

    本文实例讲述了Android编程中selector背景选择器用法.分享给大家供大家参考,具体如下: 在Android开发过程中,经常对某一View的背景在不同的状态下,设置不同的背景,增强用户体验.如果按钮,在按下时,背景变化,如果在代码中动态设置,相对比较麻烦.Android为我们提供了selector背景选择器可以非常方便的解决这一问题. Selector的结构描述: 1.android:state_pressed="true/false" true:表示按下状态下使用,false

  • Android编程设置全屏的方法实例详解

    本文实例讲述了Android编程设置全屏的方法.分享给大家供大家参考,具体如下: 在实际的应用程序开发中,我们有时需要把 Activity 设置成全屏显示,一般情况下,可以通过两种方式来设置全屏显示效果.其一,通过在代码中可以设置,其二,通过manifest配置文件来设置全屏. 其一:在代码中设置(如下) package xiaohang.zhimeng; import android.app.Activity; import android.content.pm.ActivityInfo; i

  • Android编程中Handler原理及用法实例分析

    本文实例讲述了Android编程中Handler用法.分享给大家供大家参考,具体如下: 在Android的UI开发中,我们经常会使用Handler来控制主UI程序的界面变化.有关Handler的作用,我们总结为:与其他线程协同工作,接收其他线程的消息并通过接收到的消息更新主UI线程的内容. 我们假设在一个UI界面上面,有一个按钮,当点击这个按钮的时候,会进行网络连接,并把网络上的一个字符串拿下来显示到界面上的一个 TextView上面,这时就出现了一个问题,如果这个网络连接的延迟过大,可能是10

  • Android编程实现TextView字体颜色设置的方法小结

    本文实例讲述了Android编程实现TextView字体颜色设置的方法.分享给大家供大家参考,具体如下: 对于setTextView(int a)这里的a是传进去颜色的值.例如,红色0xff0000是指0xff0000如何直接传入R.color.red是没有办法设置颜色的,只有通过文章中的第三种方法先拿到资源的颜色值再传进去. 复制代码 代码如下: tv.setTextColor(this.getResources().getColor(R.color.red)); 关键字: android t

  • Android编程实现TextView部分颜色变动的方法

    本文实例讲述了Android编程实现TextView部分颜色变动的方法.分享给大家供大家参考,具体如下: public class StringHandleExampleActivity extends Activity { /** Called when the activity is first created. */ private TextView textView; private String tempStr = "abcd12我的中古zx9yu5!f3,,"; priva

随机推荐