나는이 다음과 같이 Kartheek (감사) 응답 및 테스트에 적합 Change the color of a specified item in a listview for android 같은 문제 :안드로이드 변화 텍스트 뷰 폰트 색상
adapter = new ArrayAdapter<String>(this,R.layout.db_msg,messaggi){
@Override
public View getView(int position, View convertView, ViewGroup parent)
{
View view1 = super.getView(position, convertView, parent);
// if (position % 2 == 0) { //Place the condition where you want
to change the item color.
testo = messaggi.get(position);
if(testo.substring(0,5).equals("27-09")){
view1.setBackgroundColor(Color.parseColor("#e0e0ef"));
} else {
//Setting to default color.
view1.setBackgroundColor(Color.WHITE);
}
return view1;
}
};
는 질문 : 차라리 글꼴 색상 변경 하지만 view1.setTextColor (Color.parseColor ("# E0E0EF"); 작동하지 않는 것 같습니다;
쓰기 convertView 교체가 그 레이아웃이 레이아웃 .setBackgroundColor (Color.parseColor ("# e0e0ef")); – Ankita
에는 db_msg 레이아웃이 포함되어 있습니다. xml 코드 – SiSa
이 레이아웃을 보여주세요. R.layout.db_msg –