Reputation: 78
I am creating dynamic listview programmatically,on click of particular view i open date dialog.and set it date value on particular view,now i have save button,on click of save button i want value of each view from list row.
This is my Code:
private void createlist(ArrayList<publicationcheckeddetail> pb) {
try {
listContainer.removeAllViews();
final LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
LinearLayout mainlayout = new LinearLayout(MainActivity.this);
LinearLayout.LayoutParams mainlayoutparameter = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);
mainlayout.setLayoutParams(mainlayoutparameter);
mainlayout.setOrientation(LinearLayout.VERTICAL);
for (int i = 0; i < pb.size(); i++) {
final ViewGroup viewgroup = (ViewGroup) inflater.inflate(R.layout.row_view, null);
final LinearLayout sublayout = new LinearLayout(MainActivity.this);
LinearLayout.LayoutParams sublayoutparameter = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
sublayout.setLayoutParams(sublayoutparameter);
sublayout.setOrientation(LinearLayout.HORIZONTAL);
sublayout.setGravity(Gravity.CENTER);
viewHolder = new ListViewHolder();
viewHolder.addImage = (ImageView) viewgroup.findViewById(R.id.addImage);
viewHolder.addchildimage = (ImageView) viewgroup.findViewById(R.id.childimage);
viewHolder.date = (TextView) viewgroup.findViewById(R.id.txtDate);
viewHolder.color = (TextView) viewgroup.findViewById(R.id.childdata);
Bitmap bitmap = BitmapFactory.decodeByteArray(pb.get(i).getPub_image(), 0, pb.get(i).getPub_image().length);
viewHolder.addImage.setImageBitmap(bitmap);
viewHoldersCollection.add(viewHolder);
sublayout.addView(viewgroup);
mainlayout.addView(sublayout);
viewHolder.date.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
int index = ((ViewGroup) sublayout.getParent()).indexOfChild(sublayout);
v1 = ((ViewGroup) sublayout.getParent()).getChildAt(index).findViewById(R.id.txtDate);
openDateDialogtoSelectDate(v1);
}
});
viewHolder.color.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
int index = ((ViewGroup) sublayout.getParent()).indexOfChild(sublayout);
colorview = ((ViewGroup) sublayout.getParent()).getChildAt(index).findViewById(R.id.childdata);
strcolor = selectcolor(colorview);
}
});
}
listContainer.addView(mainlayout);
listContainer.requestLayout();
} catch (Exception e) {
e.printStackTrace();
}
}
private void openDateDialogtoSelectDate(View v1) {
try {
Calendar c = Calendar.getInstance();
dialog = new DatePickerDialog(this, datePickerListener, year, month, day);
dialog.getDatePicker().setMinDate(System.currentTimeMillis() - 1000);
dialog.show();
} catch (Exception e) {
e.printStackTrace();
}
}
public DatePickerDialog.OnDateSetListener datePickerListener = new DatePickerDialog.OnDateSetListener() {
public void onDateSet(DatePicker view, int selectedYear,
int selectedMonth, int selectedDay) {
year = selectedYear;
month = selectedMonth;
day = selectedDay;
tv = (TextView) v1.findViewById(R.id.txtDate);
tv.setText(new StringBuilder().append(day).append("-")
.append((month + 1)).append("-").append(year)
.append(" "));
}
}
Upvotes: 1
Views: 704
Reputation: 101
You may want to try and use a CustomListView. These aren't that hard to use and they have a nice method which you can override called getView().
@Override
public View getView(final int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
final View rowView = inflater.inflate(R.layout.settingsrowlayout, parent, false);
Button button = (Button)rowView.findViewById(R.id.btnChange);
//What you want to happen when the button in the generated ListView using a CustomListView to do.
}
I hope this makes sense, custom list views are very helpful and a good tool to use
Upvotes: 0
Reputation: 679
Simply, traverse the LinearLayout ( mainlayout)
int childCount=mainlayout.getChildCount();
for(int i=0;i<childCount;i++)
{
View v=mainlayout.getChildAt(i);
TextView txtDate=(TextView)v.findViewById(R.id.txtDate); //get the date value
String strDate= txtDate.getText().toString();
// do other operations
}
Upvotes: 1