Guest User

Untitled

a guest
Feb 23rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. public class CustomExpListView extends ExpandableListView
  2. {
  3. public CustomExpListView(Context context)
  4. {
  5. super(context);
  6. }
  7. protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
  8. {
  9. widthMeasureSpec = MeasureSpec.makeMeasureSpec(960, MeasureSpec.AT_MOST);
  10. heightMeasureSpec = MeasureSpec.makeMeasureSpec(20000, MeasureSpec.AT_MOST);
  11. super.onMeasure(widthMeasureSpec, heightMeasureSpec);
  12. }
  13. }
Add Comment
Please, Sign In to add comment