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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-client-android
Commits
0eb0203c
Commit
0eb0203c
authored
11 years ago
by
Alexandre Lision
Browse files
Options
Downloads
Patches
Plain Diff
* #30525: added check for transfer dialog
parent
fdf2075a
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/com/savoirfairelinux/sflphone/fragments/CallFragment.java
+6
-1
6 additions, 1 deletion
...com/savoirfairelinux/sflphone/fragments/CallFragment.java
with
6 additions
and
1 deletion
src/com/savoirfairelinux/sflphone/fragments/CallFragment.java
+
6
−
1
View file @
0eb0203c
...
...
@@ -96,6 +96,8 @@ public class CallFragment extends Fragment implements Callback, SensorEventListe
private
Sensor
mSensor
;
TransferDFragment
editName
;
@Override
public
void
onCreate
(
Bundle
savedBundle
)
{
super
.
onCreate
(
savedBundle
);
...
...
@@ -465,7 +467,7 @@ public class CallFragment extends Fragment implements Callback, SensorEventListe
public
void
makeTransfer
(
Bubble
contact
)
{
FragmentManager
fm
=
getFragmentManager
();
TransferDFragment
editName
=
new
TransferDFragment
();
editName
=
TransferDFragment
.
newInstance
();
Bundle
b
=
new
Bundle
();
try
{
b
.
putParcelableArrayList
(
"calls"
,
(
ArrayList
<
Conference
>)
mCallbacks
.
getService
().
getConcurrentCalls
());
...
...
@@ -489,6 +491,9 @@ public class CallFragment extends Fragment implements Callback, SensorEventListe
// check that soft input is hidden
InputMethodManager
lManager
=
(
InputMethodManager
)
getActivity
().
getSystemService
(
Context
.
INPUT_METHOD_SERVICE
);
lManager
.
hideSoftInputFromWindow
(
view
.
getWindowToken
(),
0
);
if
(
editName
!=
null
&&
editName
.
isVisible
()){
editName
.
dismiss
();
}
}
public
BubblesView
getBubbleView
()
{
...
...
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