android textview 背景图片,Android—TextView 背景颜色与背景图片设置
Android TextView 背景顏色與背景圖片設(shè)置,android textview 控件,android textview 背景,
android textview 圖片,android textview 顏色,android textview 組件,android textview background 。
設(shè)置文本顏色
TextView textView = (TextView) findViewById(R.id.textview1);
// 使用實(shí)際的顏色值設(shè)置字體顏色
textView.setTextColor(android.graphics.Color.RED); 設(shè)置背景顏色
有三種方法:
setBackgroundResource:通過顏色資源ID設(shè)置背景色。
setBackgroundColor:通過顏色值設(shè)置背景色。
setBackgroundDrawable:通過Drawable對象設(shè)置背景色。
下面分別演示如何用這3個方法來設(shè)置TextView組件的背景
setBackgroundResource方法設(shè)置背景:
以下為引用內(nèi)容:
textView.setBackgroundResource(R.color.background);
setBackgroundColor方法設(shè)置背景:
textView.setBackgroundColor(android.graphics.Color.RED);
setBackgroundDrawable方法設(shè)置背景:
Resources resources=getBaseContext().getResources();
Drawable drawable=resources.getDrawable(R.color.background);
textView.setBackgroundDrawable(drawable); 設(shè)置背景圖片
1、將背景圖片放置在 drawable-mdpi 目錄下,假設(shè)圖片名為 bgimg.jpg 。
2、main.xml 文件
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/bgimg"
/>
總結(jié)
以上是生活随笔為你收集整理的android textview 背景图片,Android—TextView 背景颜色与背景图片设置的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: c语言编程调试找不到路径,VScode
- 下一篇: settimeout需要清除吗_前端20