我是靠谱客的博主 俊逸刺猬,最近开发中收集的这篇文章主要介绍Android TextView背景颜色与背景图片设置,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Android TextView 背景颜色与背景图片设置,android textview 控件,android textview 背景,

android textview 图片,android textview 颜色,android textview 组件,android textview background 。

设置文本颜色

TextView textView = (TextView) findViewById(R.id.textview1); 
// 使用实际的颜色值设置字体颜色
textView.setTextColor(android.graphics.Color.RED); 

设置背景颜色
有三种方法:

setBackgroundResource:通过颜色资源ID设置背景色。
setBackgroundColor:通过颜色值设置背景色。
setBackgroundDrawable:通过Drawable对象设置背景色。

下面分别演示如何用这3个方法来设置TextView组件的背景

setBackgroundResource方法设置背景:

textView.setBackgroundResource(R.color.background);  

setBackgroundColor方法设置背景:
textView.setBackgroundColor(android.graphics.Color.RED);

setBackgroundDrawable方法设置背景:
Resources resources=getBaseContext().getResources(); 
Drawable drawable=resources.getDrawable(R.color.background); 
textView.setBackgroundDrawable(drawable); 

 

设置背景图片

1、将背景图片放置在 drawable-mdpi 目录下,假设图片名为 bgimg.jpg 。

2、main.xml 文件

<EditText
   android:layout_width="fill_parent"
   android:layout_height="wrap_content" 
   android:background="@drawable/bgimg"
/>

 

 

 

 

ANDROID TEXTVIEW 背景颜色与背景图片设置
2014-06-26 16:34:51  By: dwtedx

  • dwtedx  
  • Android  
  • 0  
  • 19914  
  • 0

Android TextView 背景颜色与背景图片设置,android textview 控件,android textview 背景,

android textview 图片,android textview 颜色,android textview 组件,android textview background 。

 

设置文本颜色

 

TextView textView =(TextView) findViewById(R.id.textview1);// 使用实际的颜色值设置字体颜色
textView.setTextColor(android.graphics.Color.RED);

设置背景颜色

有三种方法:

setBackgroundResource:通过颜色资源ID设置背景色。
setBackgroundColor:通过颜色值设置背景色。
setBackgroundDrawable:通过Drawable对象设置背景色。

 


下面分别演示如何用这3个方法来设置TextView组件的背景


setBackgroundResource方法设置背景:

 

以下为引用内容: 
textView.setBackgroundResource(R.color.background);  

setBackgroundColor方法设置背景:
textView.setBackgroundColor(android.graphics.Color.RED);

setBackgroundDrawable方法设置背景:Resources resources=getBaseContext().getResources();Drawable drawable=resources.getDrawable(R.color.background); 
textView.setBackgroundDrawable(drawable);

设置背景图片

 


1、将背景图片放置在 drawable-mdpi 目录下,假设图片名为 bgimg.jpg 。


2、main.xml 文件

最后

以上就是俊逸刺猬为你收集整理的Android TextView背景颜色与背景图片设置的全部内容,希望文章能够帮你解决Android TextView背景颜色与背景图片设置所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(31)

评论列表共有 0 条评论

立即
投稿
返回
顶部