Hi
In expandablelistview each row having two buttons.
when select view through keypad left and right sound is not coming.
but when keypad up and down when select each row of expandablelistview then
sound is coming.
public View getChildView(int groupPosition, int childPosition, boolean
isLastChild,
View convertView, ViewGroup parent) {
// TextView textView = getGenericView();
LinearLayout ll = new LinearLayout(ExpandTestActivity.this);
Button textView = new Button(ExpandTestActivity.this);
String text = getChild(groupPosition,
childPosition).toString()+" 1 ";
textView.setText(text);
ll.addView(textView);
textView = new Button(ExpandTestActivity.this);
text = getChild(groupPosition, childPosition).toString()+" 2 ";
textView.setText(text);
ll.addView(textView);
return ll;
}
if any one knows this issue kindly help me
Thanks
Sujit
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en