k 값을 텍스트뷰의 이름으로 생성하려 하는데 쉽지가 않네요...
String k = c.getString(i);
TextView k = new TextView(null, null);

TextView  c.getString(i);  = new TextView(null, null);
이렇게 해도 안되고... 어떻게야 할까요??

TextView context = new TextView(R.id.context_i); //i는 변수
이렇게 해도 안되고... 어렵네요 자바 참...