Reputation: 17264
I need to make an horizontal list view that expands on being clicked. What is the best possible way of achieving this ? Thanks !
Refer this question as well. It also addresses similar issue. Thanks !
Upvotes: 3
Views: 1100
Reputation: 66
I think the best solution would be to use setOnItemClickListener() and increase the size at runtime with setLayoutParams(new LayoutParams(width, height)).
Upvotes: 1