can't set adapter two lists in android



i created an xml file which presents two list views as follow:



<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://ift.tt/nIICcg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#fff" >

<LinearLayout
android:id="@+id/top_layover"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:background="@drawable/blue_gradient"
android:orientation="horizontal" >

<TextView
style="@style/BlackText"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:text="זמני יום חול"
android:textAppearance="?android:attr/textAppearanceLarge" />

</LinearLayout>

<LinearLayout
android:id="@+id/top_layover2"
android:layout_below="@id/top_layover"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginTop="5dp"
android:background="@drawable/blue_gradient"
android:orientation="horizontal" >

<TextView
style="@style/BlackText"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:text="ראשון עד חמישי"
android:textSize="16sp"
android:textAppearance="?android:attr/textAppearanceLarge" />

</LinearLayout>

<LinearLayout
android:id="@+id/lists"
android:layout_below="@+id/top_layover2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="100"
android:orientation="vertical">

<LinearLayout
android:id="@+id/list1_la"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="40"
>

<ListView
android:id="@+id/weeklylist"
android:layout_width="fill_parent"
android:layout_height="wrap_content"

android:background="#fff"
android:divider="@android:color/transparent"
android:scrollbars="none" />

</LinearLayout>

<LinearLayout
android:id="@+id/bottom_layover"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/list1_la"
android:layout_alignParentLeft="true"
android:layout_marginTop="5dp"
android:background="@drawable/blue_gradient"
android:orientation="horizontal"
android:layout_weight="1" >

<TextView
style="@style/BlackText"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:text="יום שישי"
android:textSize="16sp"
android:textAppearance="?android:attr/textAppearanceLarge" />

</LinearLayout>

<LinearLayout
android:id="@+id/list2_la"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/bottom_layover"
android:layout_weight="59">

<ListView
android:id="@+id/weeklylist2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"

android:background="#fff"
android:divider="@android:color/transparent"
android:scrollbars="none" />

</LinearLayout>


and im trying to set the adapter which i created in the java class but every time i start the activity that does that the app crashes:



package com.example.neotavraham;

import java.util.ArrayList;
import java.util.HashMap;

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import com.example.neotavraham.Messages.LoadComments;

import android.app.ListActivity;
import android.app.ProgressDialog;
import android.os.AsyncTask;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ListAdapter;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.AdapterView.OnItemClickListener;

public class WeeklyPrays extends ListActivity{

ListView lv;

// Progress Dialog
private ProgressDialog pDialog;

//php read comments script

//localhost :
//testing on your device
//put your local ip instead, on windows, run CMD > ipconfig
//or in mac's terminal type ifconfig and look for the ip under en0 or en1
// private static final String READ_COMMENTS_URL = "http://ift.tt/1iG1Tdh";

//testing on Emulator:
private static final String READ_WEEKLY_PRAYS_URL = "http://ift.tt/15mxbED";

//testing from a real server:
//private static final String READ_COMMENTS_URL = "http://ift.tt/1iG1TKl";

//JSON IDS:
private static final String TAG_SUCCESS = "success";
private static final String TAG_PRAY = "pray";
private static final String TAG_TIME = "time";
private static final String TAG_PLACE = "place";
private static final String TAG_POSTS = "posts";
private static final String TAG_POST_ID = "post_id";

//it's important to note that the message is both in the parent branch of
//our JSON tree that displays a "Post Available" or a "No Post Available" message,
//and there is also a message for each individual post, listed under the "posts"
//category, that displays what the user typed as their message.


//An array of all of our comments
private JSONArray mComments = null;
//manages all of our comments in a list.
private ArrayList<HashMap<String, String>> mCommentList;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//note that use read_comments.xml instead of our single_post.xml
setContentView(R.layout.read_weekly_times);


lv = (ListView) findViewById(R.id.weeklylist);
}

@Override
protected void onResume() {
// TODO Auto-generated method stub
super.onResume();
//loading the comments via AsyncTask
new LoadWeeklyPrays().execute();

}

/**
* Retrieves recent post data from the server.
*/
public void updateJSONdata() {

// Instantiate the arraylist to contain all the JSON data.
// we are going to use a bunch of key-value pairs, referring
// to the json element name, and the content, for example,
// message it the tag, and "I'm awesome" as the content..

mCommentList = new ArrayList<HashMap<String, String>>();

// Bro, it's time to power up the J parser
JSONParser jParser = new JSONParser();
// Feed the beast our comments url, and it spits us
//back a JSON object. Boo-yeah Jerome.
JSONObject json = jParser.getJSONFromUrl(READ_WEEKLY_PRAYS_URL);

//when parsing JSON stuff, we should probably
//try to catch any exceptions:
try {

//I know I said we would check if "Posts were Avail." (success==1)
//before we tried to read the individual posts, but I lied...
//mComments will tell us how many "posts" or comments are
//available
mComments = json.getJSONArray(TAG_POSTS);


// looping through all posts according to the json object returned
for (int i = 0; i < mComments.length(); i++) {

JSONObject c = mComments.getJSONObject(i);

//gets the content of each tag
String pray = c.getString(TAG_PRAY);
String time = c.getString(TAG_TIME);
String place = c.getString(TAG_PLACE);


// creating new HashMap
HashMap<String, String> map = new HashMap<String, String>();

map.put(TAG_PRAY, pray);
map.put(TAG_TIME, time);
map.put(TAG_PLACE, place);




// adding HashList to ArrayList
mCommentList.add(map);

//annndddd, our JSON data is up to date same with our array list
}

} catch (JSONException e) {
e.printStackTrace();
}
}

/**
* Inserts the parsed data into the listview.
*/
private void updateList() {
// For a ListActivity we need to set the List Adapter, and in order to do
//that, we need to create a ListAdapter. This SimpleAdapter,
//will utilize our updated Hashmapped ArrayList,
//use our single_post xml template for each item in our list,
//and place the appropriate info from the list to the
//correct GUI id. Order is important here.
ListAdapter adapter = new SimpleAdapter(this, mCommentList,
R.layout.single_time_box, new String[] { TAG_PRAY, TAG_TIME,TAG_PLACE
}, new int[] { R.id.pray, R.id.pray_time,R.id.place});

// I shouldn't have to comment on this one:

lv.setAdapter(adapter);
// Optional: when the user clicks a list item we
//could do something. However, we will choose
//to do nothing...
/*ListView lv = getListView();

lv.setOnItemClickListener(new OnItemClickListener() {

@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {

// This method is triggered if an item is click within our
// list. For our example we won't be using this, but
// it is useful to know in real life applications.

}
});*/
}

public class LoadWeeklyPrays extends AsyncTask<Void, Void, Boolean> {

@Override
protected void onPreExecute() {
super.onPreExecute();
pDialog = new ProgressDialog(WeeklyPrays.this);
pDialog.setMessage("Loading weekly prays...");
pDialog.setIndeterminate(false);
pDialog.setCancelable(true);
pDialog.show();
}
@Override
protected Boolean doInBackground(Void... arg0) {
//we will develop this method in version 2
updateJSONdata();

return null;

}


@Override
protected void onPostExecute(Boolean result) {
super.onPostExecute(result);
pDialog.dismiss();
//we will develop this method in version 2
updateList();
}
}


}


In the function updateList() i'm doing lv.setAdapter(adapter) but for some reason its not working. i have another activity which have only one list view so i'm doing lv = getListView() and it works fine..but i don't wanna use this function in this activity...


No comments:

Post a Comment