博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
TextView tv01=(TextView)this.findViewById(R.id.TextView01); tv01.setText("设置文字背景色");...
阅读量:6153 次
发布时间:2019-06-21

本文共 852 字,大约阅读时间需要 2 分钟。

package com.bn.ex2h;

import android.app.Activity;

import android.content.res.Resources;
import android.graphics.Color;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.widget.TextView;

public class Sample2_8_Activity extends Activity {

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView tv01=(TextView)this.findViewById(R.id.TextView01);
tv01.setText("设置文字背景色");
Resources resources=getBaseContext().getResources();
Drawable Hdrawable=resources.getDrawable(R.color.white);
tv01.setBackgroundDrawable(Hdrawable);
TextView tv02=(TextView)this.findViewById(R.id.TextView02);
tv02.setText("设置文字颜色");
tv02.setTextColor(Color.WHITE);
}
}

转载于:https://www.cnblogs.com/tfy1332/p/3653067.html

你可能感兴趣的文章
mysql做主从relay-log问题
查看>>
Docker镜像与容器命令
查看>>
批量删除oracle中以相同类型字母开头的表
查看>>
Java基础学习总结(4)——对象转型
查看>>
BZOJ3239Discrete Logging——BSGS
查看>>
SpringMVC权限管理
查看>>
spring 整合 redis 配置
查看>>
redhat6.1下chrome的安装
查看>>
cacti分组发飞信模块开发
查看>>
浅析LUA中游戏脚本语言之魔兽世界
查看>>
飞翔的秘密
查看>>
Red Hat 安装源包出错 Package xxx.rpm is not signed
查看>>
编译安装mysql-5.6.16.tar.gz
查看>>
类与成员变量,成员方法的测试
查看>>
活在当下
查看>>
每天进步一点----- MediaPlayer
查看>>
PowerDesigner中CDM和PDM如何定义外键关系
查看>>
跨域-学习笔记
查看>>
the assignment of reading paper
查看>>
android apk 逆向中常用工具一览
查看>>