</style>

ListView를 사용할때는 어댑터를 이용한다.

// 어댑터 준비

arrAdapter = new ArrayAdapter<String>(this, R.layout.list_text_style, arrData);

위와 같이 어댑터를 생성할때 두 번째 값에 자신이 만든 *.xml 파일을 지정하면된다.

R.layout.list_text_style.xml

<?xml version="1.0" encoding="utf-8"?>
<TextView
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:paddingTop="10dp"
 android:textSize="25dp"
 android:textColor="#FFF000"
 />

 

+ Recent posts