My textview -
TextView doses = (TextView) findViewById(R.id.doses);
int getting code -
int nIndex = cursor.getColumnIndexOrThrow(DictionaryDatabase.KEY_DOSES);
What I want is add some pre defined TEXT like "DOSE:" before nIndex
.
My expected result will be like-
doses.setText(cursor.getString("DOSE"+nIndex));
How to do that??