돔 파서로 XML 파일을 읽어왔어 횽들


<items>
<item>
<continent>아시아/태평양</continent>
<ename>Philippines</ename>
<name>필리핀</name>

</item>
<item>
<continent>아메리카 대륙</continent>
<ename>America</ename>
<name>미국</name>
</item>
</items>

뭐 이런 XML이 있다고 치면 


요거를 ArrayList로 자바빈같이 클래스를 만들고 저장했는데 말이지


class CI_Info{

String basic;

String countryName;

String countryEnName;

}


뭐 이런식으로 


여기서 질문


EditText에 국가명을 입력하면, 특정 국가 정보를 출력해주려고 해. 예를 들면 EditText에다가 '미국'이라고 입력하면 


"나라 이름 : 미국

영문 이름 : America

대륙 : 아메리카 대륙 "


뭐 이런 식으로 나오게 하고 싶단말야.


즉, EditText에 입력된 '미국'이라는 값을 찾으면 '나라이름'과 '영문이름', '대륙' 세개가 매칭되서 TextView에 뿌려지게 하고싶거든 


어떤 식으로 접근해야 가능할까? ㅠㅠ