Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-client-android
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-client-android
Commits
c2b15db2
Commit
c2b15db2
authored
11 years ago
by
Alexandre Lision
Browse files
Options
Downloads
Patches
Plain Diff
Fix occurence of missing class Parallor
parent
dede80ea
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/org/sflphone/fragments/DetailsHistoryEntryFragment.java
+0
-46
0 additions, 46 deletions
src/org/sflphone/fragments/DetailsHistoryEntryFragment.java
with
0 additions
and
46 deletions
src/org/sflphone/fragments/DetailsHistoryEntryFragment.java
+
0
−
46
View file @
c2b15db2
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment