onItemSelectedListener不起作用

时间:2015-06-03 18:22:31

标签: java android sqlite spinner onitemselectedlistener

我的Spinner上有Activity,当我点击某个项目时,没有任何反应。

Activity的目的是搜索电话联系人。它可以在SQLite数据库中按名称或电话号码进行搜索。您可以想象,如果我按名称搜索,则select可以找到两个具有相同名称的联系人,如果它发生,我想将选项放在微调器上以选择我想要查看的联系人。一旦我选择了cootact,就可以设置EditText字段的信息,但它不会发生。

这里是代码:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_buscar);
    Conexion=new BaseDeDatos(this, "BDCONTACTOS", null, 1);
    alerta = new AlertDialog.Builder(this).create();
    if(Conexion==null){

        alerta.setMessage("LA conexion NO se ha hecho");
        alerta.show();  
        return;
    }
    BD = Conexion.getWritableDatabase();


    nombreTxt = (EditText)findViewById(R.id.editText1);
    telefonoTxt = (EditText)findViewById(R.id.editText2);
    direccionTxt = (EditText)findViewById(R.id.editText3);

    buscarBtn = (Button)findViewById(R.id.button1);
    limpiarBtn = (Button)findViewById(R.id.button2);

    miSpinner = (Spinner)findViewById(R.id.spinner1);


     adp = new ArrayAdapter<String> (this,android.R.layout.simple_spinner_dropdown_item,arrayList1);
    miSpinner.setAdapter(adp);
    miSpinner.setDropDownVerticalOffset(50);
    miSpinner.setOnItemSelectedListener(this);


    buscarBtn.setOnClickListener(this);
    limpiarBtn.setOnClickListener(this);
}
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) 
{


    int index = miSpinner.getSelectedItemPosition();
    nombreTxt.setText(registros[index][0]);
    telefonoTxt.setText(registros[index][1]);
    direccionTxt.setText(registros[index][2]);

}

public void onNothingSelected(AdapterView<?> arg0) 
{
    // TODO Auto-generated method stub
}
public void onClick(View v) {
    if(v==buscarBtn){
        BD = Conexion.getWritableDatabase();
        if(BD==null){
           alerta.setTitle("Mensaje");
           alerta.setMessage("La base de datos no está abierta");
           alerta.show();   
           return;
        }
        nombre= nombreTxt.getText().toString();
        telefono=telefonoTxt.getText().toString();
        direccion=direccionTxt.getText().toString();

        if(nombre.equals("")&&telefono.equals("")){
            alerta.setTitle("Mensaje");
            alerta.setMessage("Se necesita nombre ó teléfono para buscar");
            alerta.show();  
            return;
        }
        Cursor c;
        if(nombre.equals("")&&!telefono.equals("")){
            String telefono=telefonoTxt.getText().toString();
             c = BD.rawQuery("SELECT Nombre,Telefono,Direccion FROM MisContactos WHERE Telefono='"+telefono+"'", null);

        }
        if(telefono.equals("")&&!nombre.equals("")){
            String nombre=nombreTxt.getText().toString();
            c = BD.rawQuery("SELECT Nombre,Telefono,Direccion FROM MisContactos WHERE Nombre='"+nombre+"'", null);
        }else{
            String telefono=telefonoTxt.getText().toString();
            String nombre=nombreTxt.getText().toString();
            c = BD.rawQuery("SELECT Nombre,Telefono,Direccion FROM MisContactos WHERE Nombre='"+nombre+"' and Telefono='"+telefono+"'", null);
        }
         int count=c.getCount();
         alerta.setMessage("Registros encontrados ="+count);
         alerta.show(); 
           if(count==0)
              return;
           registros=new String[count][3];
           if (c.moveToFirst()) {
                 //Recorremos el cursor hasta que no haya más registros
               int i=0;
                 do {
                    // nombreTxt.setText(c.getString(0)); 
                     registros[i][0]=c.getString(0);
                     //telefonoTxt.setText(c.getString(1)); 
                     registros[i][4]=c.getString(1);
                     //direccionTxt.setText(c.getString(2));    
                     registros[i][5]=c.getString(2);
                    i++;
                 } while(c.moveToNext());
            }

              if(miSpinner.getAdapter().getCount()>0){

                  arrayList1=new ArrayList<String>();
                  adp = new ArrayAdapter<String> (this,android.R.layout.simple_spinner_dropdown_item,arrayList1);
                  miSpinner.setAdapter(adp);

              }

              for(int j=0;j<count;j++)
                  arrayList1.add("Ver contacto "+(j+1));



              return;   
          }


    if(v==limpiarBtn){
        limpiar();
        return;
    }
}
public void limpiar(){
    nombreTxt.setText("");
    telefonoTxt.setText("");
    direccionTxt.setText("");
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.buscar, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();
    if (id == R.id.action_settings) {
        return true;
    }
    return super.onOptionsItemSelected(item);
}

一些截图:

一见钟情的活动:

the activity at first sight:

一旦按名称搜索,就会发现两行:

once I search by name, it found two rows:

如果我从微调器中单击一个选项(但它没有),则设置名称,电话号码和地址(nombre,teléfono,dirección)

it is suppose to set name, phone number and address (nombre, teléfono, dirección) if I click an option from the spinner (But It doesn't)

这是我第一次在本网站上提问。感谢您的支持。

1 个答案:

答案 0 :(得分:0)

这是简单的方法在按钮中单击

Spinner spinner = (Spinner)findViewById(R.id.spinner);
String text = spinner.getSelectedItem().toString();

当选择某些内容时,Spinner应该触发“OnItemSelected”事件:

spinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
    Object item = parent.getItemAtPosition(pos);
}
public void onNothingSelected(AdapterView<?> parent) {
}
});