a battle with myself

[android] ScrollView 안의 GridView Full size libary(GridView height) 본문

android

[android] ScrollView 안의 GridView Full size libary(GridView height)

열공_중 2017. 1. 20. 09:22

GridView 를 상속 받은 ExpandableHeightGridView 확장 그리드 뷰

scrollView.setFillViewport(true);


GridView 대신   ExpandableHeightGridView 사용

확장 class 적용


ExpandableHeightGridView userGridView = (ExpandableHeightGridView) findViewById(R.id.userGridView); userGridView.setExpanded(true); UserGridViewAdapter userAdapter = new UserGridViewAdapter(context, R.layout.userAdapterLayout,params); userGridView.setAdapter(userAdapter); userAdapter.notifyDataSetChanged();



출처 https://gist.github.com/sakurabird/6868765