[RESOLVIDO] Android - TextView retorna null

Olá pessoal, boa noite.

Eu tenho um layout que criei via xml para inserir nele dados que vem da base de dados.
Porém o layout é o mesmo para cada registro encontrado, estou tentando fazer da seguinte forma mas esta dando erro:
Retorna que o objeto TextView “TV” é null, veja o fonte abaixo:

... Cursor cCLogs = db.seek("logs", "idreg='"+Integer.toString(nIdSel)+"'", 0, "DESC");; cCLogs cCLogs.moveToFirst(); if(cCLogs.getCount()>0){ while(!cCLogs.isAfterLast()){ LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); RL_SV.addView(inflater.inflate(R.layout.listlogs, null)); TextView TV = (TextView)findViewById(R.id.text); TV.setText(cCLogs.getString(cCLogs.getColumnIndex("name")); cCLogs.moveToNext(); } } cCLogs.close(); db.close(); ...

Obrigado.

Caros,
Consegui resolver fazendo da seguinte maneira:

while(!cCLogs.isAfterLast()){  
LayoutInflater inflate = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
RelativeLayout layoutRight = (RelativeLayout) inflate.inflate(R.layout.listlogs, null);
RelativeLayout.LayoutParams relParam = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT,RelativeLayout.LayoutParams.WRAP_CONTENT);
        	
RL_SV.addView(layoutRight, relParam);
TextView TV = (TextView) layoutRight.findViewById(R.id.text);
TV.setText(cCLogs.getString(cCLogs.getColumnIndex("name"));
}

Obrigado a todos.