Skip to content
Snippets Groups Projects
Commit c2b15db2 authored by Alexandre Lision's avatar Alexandre Lision
Browse files

Fix occurence of missing class Parallor

parent dede80ea
No related branches found
No related tags found
No related merge requests found
......@@ -161,21 +161,6 @@ public class DetailsHistoryEntryFragment extends Fragment {
}
}
});
/*lvMain.post(new Runnable() {
@Override
public void run() {
setListViewHeight(lvMain, llMain);
}
});*/
/* ParallaxScrollView parSV = (ParallaxScrollView) inflatedView.findViewById(R.id.scroll_view);*/
if (lvMain instanceof Parallaxor) {
((Parallaxor) lvMain).parallaxViewBy(inflatedView.findViewById(R.id.iv), 0.5f);
}
return inflatedView;
}
......@@ -184,37 +169,6 @@ public class DetailsHistoryEntryFragment extends Fragment {
}
// Sets the ListView holder's height
public void setListViewHeight(ListView listView, LinearLayout llMain) {
ListAdapter listAdapter = listView.getAdapter();
if (listAdapter == null) {
return;
}
int totalHeight = 0;
int firstHeight = 0;
int desiredWidth = MeasureSpec.makeMeasureSpec(listView.getWidth(), MeasureSpec.AT_MOST);
for (int i = 0; i < listAdapter.getCount(); i++) {
if (i == 0) {
View listItem = listAdapter.getView(i, null, listView);
listItem.measure(desiredWidth, MeasureSpec.UNSPECIFIED);
firstHeight = listItem.getMeasuredHeight();
}
totalHeight += firstHeight;
}
// totalHeight -= iv.getMeasuredHeight();
FrameLayout.LayoutParams params = (FrameLayout.LayoutParams) llMain.getLayoutParams();
params.height = totalHeight + (listView.getDividerHeight() * (listAdapter.getCount() - 1));
llMain.setLayoutParams(params);
}
private class DetailHistoryAdapter extends BaseAdapter implements ListAdapter {
ArrayList<HistoryCall> dataset;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment