iis服务器助手广告广告
返回顶部
首页 > 资讯 > 移动开发 >Android编程设置TextView颜色setTextColor用法实例
  • 128
分享到

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

Android 2022-06-06 09:06:46 128人浏览 泡泡鱼
摘要

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

本文实例讲述了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;
 
 @Override
 public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  TextView tv = new TextView(this);
  tv.setText("Test set TextView's color.");
  //方案一:通过ARGB值的方式
  
//  tv.setTextColor(Color.rgb(255, 255, 255));
  
  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程序设计有所帮助。

您可能感兴趣的文章:Android取消EditText自动获取焦点默认行为Android控件系列之EditText使用方法android同时控制EditText输入字符个数和禁止特殊字符输入的方法Android中EditText实现不可编辑解决办法Android定制自己的EditText轻松改变底线颜色Android更改EditText下划线颜色样式的方法Android 设置Edittext获取焦点并弹出软键盘全面解析Android中对EditText输入实现监听的方法android基础教程之android的listview与edittext冲突解决方法Android中EditText setText方法的踩坑实战


--结束END--

本文标题: Android编程设置TextView颜色setTextColor用法实例

本文链接: https://www.lsjlt.com/news/25926.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作