Android row in listview

الوصول الى العناصر الاخرى في نفس صف العنصر المختار – Get other objects in the same row in listview

السلام عليكم,

اذا كنت تحتاج الى الوصول الى محتويات العناصر الاخرى ضمن row معين في listview يمكنك استخدام هذه الطريقة البسيطة.


ViewParent lay = view.getParent();
ViewParent secondLay = lay.getParent();
ViewParent thirdLay = secondLay.getParent();
TextView name = (TextView) ((View) thirdLay).findViewById(R.id.excerNameTxt);
String nameTxt = name.getText().toString();
ImageView img2 = (ImageView) ((View) thirdLay).findViewById(R.id.imageView2);
ImageView img = (ImageView) ((View)lay).findViewById(R.id.imageView3);
ImageView img3 = (ImageView) ((View)thirdLay).findViewById(R.id.imageView4);

Posted

in

, , , ,

by

Comments

اترك تعليقاً

لن يتم نشر عنوان بريدك الإلكتروني. الحقول الإلزامية مشار إليها بـ *