Android-spiner,onItemSelected(...)没有被呼唤 [英] Android - Spinner, onItemSelected(...) not being called

查看:18
本文介绍了Android-spiner,onItemSelected(...)没有被呼唤的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

代码如下:

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.params.BasicHttpParams;
import org.apache.http.params.HttpConnectionParams;
import org.apache.http.params.HttpParams;
import org.json.JSONArray;
import org.json.JSONObject;
import com.project.locationapp.model.Device;
import android.os.AsyncTask;
import android.os.Bundle;
import android.provider.Settings.Secure;
import android.app.Activity;
import android.content.Intent;
import android.util.Log;
import android.view.Menu;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemSelectedListener;
import android.widget.ArrayAdapter;
import android.widget.Spinner;


public class SelectDevice extends Activity implements OnItemSelectedListener {

private Spinner deviceSpinner;
private List<Device> deviceList;
private ArrayAdapter<Device> deviceAdapter;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_select_device);
    deviceList = new ArrayList<Device>();


    try {
        deviceSpinner = (Spinner) findViewById(R.id.select_device_spinner);
        deviceAdapter = new DeviceAdapter(this, android.R.layout.simple_spinner_dropdown_item, deviceList);
        deviceSpinner.setAdapter(deviceAdapter);
        deviceSpinner.setOnItemSelectedListener(this);

        DataAsyncTask loadDevices = new DataAsyncTask();
        loadDevices.execute(new String[] { WebServiceURL.WEB_SERVICE + WebServiceURL.DEVICES + WebServiceURL.ALL });




    } catch (Exception e){
        Log.e(TAG, e.getLocalizedMessage(), e);
    }
}

@Override
public void onItemSelected(AdapterView<?> a, View v, int position,
        long id) {

    Log.d(TAG, "called!");  
    Intent intent = new Intent(this, ViewTrips.class);
    intent.putExtra("device_id", deviceAdapter.getItem(position).getId());
    startActivity(intent);

}
}

DeviceAdapter类:

import java.util.List;
import com.project.locationapp.model.Device;
import android.content.Context;
import android.widget.ArrayAdapter;

public class DeviceAdapter extends ArrayAdapter<Device> {

public DeviceAdapter(Context context, int textViewResourceId,
        List<Device> objects) {
    super(context, textViewResourceId, objects);
}
}

活动布局XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".SelectDevice" >


<TextView
    android:id="@+id/instructions_device_select"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:text="@string/select_device_instructions"
    android:layout_marginTop="10dp"
    android:layout_marginBottom="10dp"
    android:layout_marginRight="15dp"
    android:layout_marginLeft="15dp" />

<Button
    android:id="@+id/start_service_button"
    android:layout_below="@id/instructions_device_select"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:onClick="thisDevice"
    android:text="@string/this_device"
    android:layout_marginTop="10dp"
    android:layout_marginRight="40dp"
    android:layout_marginLeft="40dp" />

<Spinner
    android:id="@+id/select_device_spinner"
    android:layout_below="@id/start_service_button"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:prompt="@string/select_device"
    android:layout_marginTop="20dp"
    android:layout_marginLeft="5dp"
    android:drawSelectorOnTop = "true" />

</RelativeLayout>

我正在等待它正常工作,然后我将进一步自定义DeviceAdapter。

Activity implements OnItemSelectedListener,因此覆盖了根本不会被调用的onItemSelected(...)LogCat中没有错误。Spinner在活动的布局XML中定义,并且可以很好地显示和填充。任何解决这个问题的建议都是很棒的。

谢谢。

推荐答案

可能是微调控件布局,我可以看到您没有为适配器设置下拉视图。 您可以尝试这样初始化您的微调工具吗:

deviceAdapter = new DeviceAdapter(this, android.R.layout.simple_spinner_item, deviceList);
deviceSpinner.setAdapter(deviceAdapter);
deviceAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
deviceSpinner.setOnItemSelectedListener(this);

这篇关于Android-spiner,onItemSelected(...)没有被呼唤的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆