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
dafe951b
Commit
dafe951b
authored
11 years ago
by
Alexandre Lision
Browse files
Options
Downloads
Patches
Plain Diff
* #31377: incoming calls display over current call
parent
becb8032
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/org/sflphone/client/CallActivity.java
+10
-5
10 additions, 5 deletions
src/org/sflphone/client/CallActivity.java
src/org/sflphone/fragments/CallFragment.java
+4
-5
4 additions, 5 deletions
src/org/sflphone/fragments/CallFragment.java
with
14 additions
and
10 deletions
src/org/sflphone/client/CallActivity.java
+
10
−
5
View file @
dafe951b
...
...
@@ -213,7 +213,6 @@ public class CallActivity extends Activity implements CallInterface, CallFragmen
tmp
.
getParticipants
().
add
(
call
);
Bundle
b
=
new
Bundle
();
b
.
putParcelable
(
"conference"
,
tmp
);
Log
.
i
(
TAG
,
"Arguments set"
);
mCurrentCallFragment
.
setArguments
(
b
);
}
catch
(
RemoteException
e
)
{
e
.
printStackTrace
();
...
...
@@ -247,7 +246,13 @@ public class CallActivity extends Activity implements CallInterface, CallFragmen
@Override
public
void
incomingCall
(
Intent
call
)
{
Bundle
b
=
new
Bundle
();
Conference
tmp
=
new
Conference
(
"-1"
);
tmp
.
getParticipants
().
add
((
SipCall
)
call
.
getParcelableExtra
(
"newcall"
));
b
.
putParcelable
(
"conference"
,
tmp
);
mCurrentCallFragment
=
new
CallFragment
();
mCurrentCallFragment
.
setArguments
(
b
);
getFragmentManager
().
beginTransaction
().
replace
(
R
.
id
.
ongoingcall_pane
,
mCurrentCallFragment
).
commit
();
// mCallsFragment.update();
}
...
...
@@ -375,11 +380,11 @@ public class CallActivity extends Activity implements CallInterface, CallFragmen
}
@Override
public
void
replaceCurrentCallDisplayed
()
{
public
void
terminateCall
()
{
mHandler
.
removeCallbacks
(
mUpdateTimeTask
);
mCurrentCallFragment
.
getBubbleView
().
stopThread
();
getFragmentManager
().
beginTransaction
().
remove
(
mCurrentCallFragment
).
commit
();
mCurrentCallFragment
=
null
;
//
getFragmentManager().beginTransaction().remove(mCurrentCallFragment).commit();
//
mCurrentCallFragment = null;
finish
();
}
...
...
This diff is collapsed.
Click to expand it.
src/org/sflphone/fragments/CallFragment.java
+
4
−
5
View file @
dafe951b
...
...
@@ -97,8 +97,7 @@ public class CallFragment extends Fragment implements Callback {
@Override
public
void
onCreate
(
Bundle
savedBundle
)
{
super
.
onCreate
(
savedBundle
);
Bundle
b
=
getArguments
();
conf
=
new
Conference
((
Conference
)
b
.
getParcelable
(
"conference"
));
conf
=
new
Conference
((
Conference
)
getArguments
().
getParcelable
(
"conference"
));
model
=
new
BubbleModel
(
getResources
().
getDisplayMetrics
().
density
);
BUBBLE_SIZE
=
getResources
().
getDimension
(
R
.
dimen
.
bubble_size
);
Log
.
e
(
TAG
,
"BUBBLE_SIZE "
+
BUBBLE_SIZE
);
...
...
@@ -117,7 +116,7 @@ public class CallFragment extends Fragment implements Callback {
}
@Override
public
void
replaceCurrentCallDisplayed
()
{
public
void
terminateCall
()
{
}
@Override
...
...
@@ -141,7 +140,7 @@ public class CallFragment extends Fragment implements Callback {
public
void
slideChatScreen
();
public
void
replaceCurrentCallDisplayed
();
public
void
terminateCall
();
}
@Override
...
...
@@ -411,7 +410,7 @@ public class CallFragment extends Fragment implements Callback {
}
if
(
conf
.
getParticipants
().
size
()
==
0
)
{
mCallbacks
.
replaceCurrentCallDisplayed
();
mCallbacks
.
terminateCall
();
}
}
...
...
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