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.