I have one screen name "Friend Request" where i am displaying the friend request which i have received. In list, I am displaying friend's name,image and one check box where user can select the request and then hit the confirm button to confirm the request.
Now, if there are multiple request then user have to select request one by one.But what i want user can select multiple request and all the friend's id will be stored in Array of string and once user hit the confirm button i called one service where one by one friend_id will be passed to my webservice and meanwhile i want to show progress dialog till all the request should get accepcted.
Here is my ListView Adapter class ::
class ListViewAdapter extends BaseAdapter
{
ListContent holder;
public ListViewAdapter(Context context)
{
imageLoader=new ImageLoader(FriendRequestActivity.this);
}
public int getCount()
{
int count=arrFriendRequest.size();
return count;
}
public Object getItem(int position)
{
return position;
}
public long getItemId(int position)
{
return position;
}
public View getView(final int position, View convertView, ViewGroup parent)
{
if (convertView == null)
{
convertView = inflater.inflate(R.layout.friend_request_list, null);
holder = new ListContent();
holder.first_name = (TextView)convertView.findViewById(R.id.user_name);
holder.last_name = (TextView)convertView.findViewById(R.id.user_last_name);
holder.img_user=(ImageView)convertView.findViewById(R.id.image_friend);
holder.checkbox=(CheckBox)convertView.findViewById(R.id.chkbox);
convertView.setTag(holder);
}
else
{
holder = (ListContent) convertView.getTag();
}
holder.first_name.setText(arrFriendRequest.get(position).first_name);
holder.last_name.setText(arrFriendRequest.get(position).last_name);
imageLoader.DisplayImage(arrFriendRequest.get(position).image,FriendRequestActivity.this, holder.img_user);
holder.checkbox.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View v)
{
if (((CheckBox) v).isChecked())
{
friend_request_id=arrFriendRequest.get(position).friend_id;
arrFriendRequest.get(position);
selected_friend_request++;
}
else
{
selected_friend_request--;
}
}
});
holder.checkbox.setChecked(false);
holder.checkbox.setTag(position);
return convertView;
}
class ListContent
{
TextView first_name,last_name;
ImageView img_user,img_confirm,img_ignore;
CheckBox checkbox;
}
}
This is my button Confirm Request's clickListener ::
if(v==img_confirm_friend)
{
if(selected_friend_request < 1)
{
Toast.makeText(FriendRequestActivity.this, "Please Select Friend Request First", Toast.LENGTH_SHORT).show();
}
else
{
final String url="http://www.example.com/service.svc/FriendConfirmUserId/v1/"+guid+"/"+friend_request_id;
selected_friend_request=0;
new Thread(new Runnable()
{
public void run()
{
try
{
HttpClient httpclient = new DefaultHttpClient();
HttpGet httpget = new HttpGet(url);
HttpResponse response = httpclient.execute(httpget);
BufferedReader buf = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
StringBuffer sb = new StringBuffer("");
String line = "";
String NL = System.getProperty("line.separator");
while ((line = buf.readLine()) != null)
{
sb.append(line + NL);
}
buf.close();
String result = sb.toString();
System.out.println("@@@ "+result);
}
catch (IOException e)
{
e.printStackTrace();
}
}
}).start();
new FriendRequestTask().execute(url);
}
I want to resolve this issue as soon as Possible.
Hope my question is clear. Any help will be appreciated .
Thanks in Advance....