0

次のようなクラスがあります。

public class Vizita {
     public int icon;
        public String titlu;
        public String loc;
        public String idviz;
        public Vizita(){
            super();
        }

        public Vizita(int icon, String titlu, String loc, String idviz) {
            super();
            this.icon = icon;
            this.titlu = titlu;
            this.loc = loc;
            this.idviz = idviz;
        }
}

AsyncTask を使用して、PHP から JSON 配列を取得します。すべてがリストビューのシンプルなレイアウトに最適です。しかし、もっと複雑なレイアウトを使用したいので、上記の Vizita.class の 4 つの値をすべて使用するレイアウトを設計しました。しかし、アダプターを設定する方法がわかりません。試してみるとエラーが発生するためです。

もちろん、次のように onPostExecute で実行しようとしています。

public class MyActivity extends Activity {
{...}
JSONArray lststat;
{...}
public JSONArray liststatus() {
    JSONArray jdata=post.getserverdataX(url_connectX);
    return jdata;
}   

class asyncpost extends AsyncTask< String, String, String > {
Vizita weather_data[];
....
protected void onPostExecute(String result) {
VizitaAdapter adapter = new VizitaAdapter(MyActivity.this,R.layout.listview_item_row, weather_data);
myListView.setAdapter(adapter);   
...}

doInBackground では、次のように JSON を処理しています。

lststat = liststatus();
JSONObject json_data; 
try {
     int length = lststat.length();
     Vizita weather_data[] = new Vizita[length];
     for (int i = 0; i < length; i++)
     {
        json_data = lststat.getJSONObject(i);
        weather_data[i].titlu =json_data.getString("clientnume");
        weather_data[i].idviz =json_data.getString("idvizite");
        weather_data[i].loc =json_data.getString("localitate");
     }
} catch (Exception e) {
Log.e(null, e.toString());
}            

liststatus() は、必要な JSONArray を取得するために asyncTask を呼び出す場所です。

しかし、for ループで java.lang.NullPointerException を受け取ります (setAdapter 行にコメントを付けると)。

私はweather_data配列を適切に初期化していないと思います?!?!? onPostExecute でアダプターを設定 (コメント解除) すると、「Force close」というクラッシュ エラーが表示されます。IDE でエラーは表示されませんが、構文は問題ないようです。

私が間違っていることを教えてください。どうすれば修正できますか?

VizitaAdapter のコードは次のとおりです。

public class VizitaAdapter extends ArrayAdapter<Vizita>{

    Context context;
    int layoutResourceId;   
    Vizita data[] = null;

    public VizitaAdapter(Context context, int layoutResourceId, Vizita[] data) {
        super(context, layoutResourceId, data);
        this.layoutResourceId = layoutResourceId;
        this.context = context;
        this.data = data;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        View row = convertView;
        WeatherHolder holder = null;

        if(row == null)
        {
            LayoutInflater inflater = ((Activity)context).getLayoutInflater();
            row = inflater.inflate(layoutResourceId, parent, false);

            holder = new WeatherHolder();
            holder.imgIcon = (ImageView)row.findViewById(R.id.imgIcon);
            holder.txtTitle = (TextView)row.findViewById(R.id.txtTitle);
            holder.txtLoco = (TextView)row.findViewById(R.id.txtLocalitate);
            holder.txtIdviz = (TextView)row.findViewById(R.id.txtIdVizite);

            row.setTag(holder);
        }
        else
        {
            holder = (WeatherHolder)row.getTag();
        }

        Vizita weather = data[position];
        holder.txtTitle.setText(weather.titlu);
        holder.txtLoco.setText(weather.loc);
        holder.txtIdviz.setText(weather.idviz);
        holder.imgIcon.setImageResource(weather.icon);

        return row;
    }

    static class WeatherHolder
    {
        ImageView imgIcon;
        TextView txtTitle;
        TextView txtLoco;
        TextView txtIdviz;
    }    
}   
4

1 に答える 1

2

Vizitaおそらく、ループでオブジェクトを初期化するのを忘れていました:

json_data = lststat.getJSONObject(i);
weather_data[i] = new Vizita();
weather_data[i].titlu =json_data.getString("clientnume");
weather_data[i].idviz =json_data.getString("idvizite");
weather_data[i].loc =json_data.getString("localitate");
于 2013-07-31T13:46:54.040 に答える