это часть моего кода:
public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
TextView title_t = new TextView(this);
title_t.setText("");
String title = title_t.getText().toString();
switch(position){
case 0 : new AlertDialog.Builder(this).setTitle(title).setMessage("blah blah").setNeutralButton("close", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// TODO Auto-generated method stub
}
}).show();
я хочу заменить "" в title_t.setText ("") тем, что может работатьЯ просто хочу взять заголовок из списка, который исходит от ресурса.Спасибо