제목이 어렵네요 ;;;


===============================================================
// 여기서는 동적으로 TextView를 생성하고요
String[] arr = getResources().getStringArray(R.array.menu01);
LinearLayout ll = (LinearLayout)findViewById(R.id.ll);
for (int i=0; i<arr.length; i++)
{
TextView tv = new TextView(this);
tv.setText(i);
tv.setOnClickListener(this);
ll.addView(tv);
}


// 여기서는 클릭했을 때 작업
public void onClick(View v)
{
// 클릭한 TextView의 text를 알고 싶어요
}
==================================================================

onClick에서, 클릭한 TextView의 정보를 알수 있나요?
검색을 해봐도 다들 r.id.xxx 식으로 xml에 있는걸 이용해서 찾더라구요....