관리 메뉴

moozi

android listview text color변경 본문

TIS_2019/응용sw2019_2기

android listview text color변경

moozi 2019. 12. 16. 17:38

adapter =new ArrayAdapter<String>(getApplicationContext(),
android.R.layout.simple_list_item_1,
arrayListTitle) {

@Override
public View getView(int position, View convertView, ViewGroup parent) {

View view = super.getView(position, convertView, parent);
TextView text = (TextView) view.findViewById(android.R.id.text1);

text.setTextColor(Color.BLACK);

return view;
}
};

'TIS_2019 > 응용sw2019_2기' 카테고리의 다른 글

ex02 20190220  (0) 2019.12.20
스프링연습문제01  (0) 2019.12.18
안드로이드 연습문제09  (0) 2019.12.16
android board  (0) 2019.12.16
Android login  (0) 2019.12.16
Comments