天天看點

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"
/>