文章列表
TextView setTextColor
该方法 支持两种参数
1 tv.setTextColor(getResources().getColor(colorRef));
2 tv.setTextColor(getResources().getColorStateList(colorRef));
第二种设置 才支持复杂的文字颜色 比如 state_seleteced state_pressed。。
1. reference:参考某一资源ID。
(1)属性定义:
<declare-styleable name = "名称">
<attr name = "background" format = "reference" />
</declare-styleable>
(2)属性使用:
<ImageView
android:layout_width = "42dip"
android:layout_height = "42dip"
...
package test.test;
import android.content.Context;
import android.util.AttributeSet;
import android.util.Log;
import android.view.View;
import android.widget.ListAdapter;
import android.widget.ListView;
/**
* 不滚动的listView 即全部显示
*
* @author david
* @deprecated
* @see ComponentUtils.setListView ...
不想为每个 listview item 定义一个布局 (十几个listview )
想到使用 html 标签 实现在一个textview 上显示全部文字信息
public static final String HTMLTEXT = new StringBuilder().append("<h1>").append(TITLES[0])
.append(": <font color=\"#00ffff\">my chose diii %s</font></h1> "). ...