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
1d68ea50
Commit
1d68ea50
authored
11 years ago
by
Alexandre Lision
Browse files
Options
Downloads
Patches
Plain Diff
dnd: workaround for sdk bug
parent
e2839d5d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
res/values-sw600dp/dimens.xml
+1
-1
1 addition, 1 deletion
res/values-sw600dp/dimens.xml
src/com/savoirfairelinux/sflphone/views/ClearableEditText.java
+12
-0
12 additions, 0 deletions
...om/savoirfairelinux/sflphone/views/ClearableEditText.java
with
13 additions
and
1 deletion
res/values-sw600dp/dimens.xml
+
1
−
1
View file @
1d68ea50
...
...
@@ -38,6 +38,6 @@ as that of the covered work.
<resources>
<dimen
name=
"bubble_size"
>
1
5
0dp
</dimen>
<dimen
name=
"bubble_size"
>
1
0
0dp
</dimen>
</resources>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/com/savoirfairelinux/sflphone/views/ClearableEditText.java
+
12
−
0
View file @
1d68ea50
...
...
@@ -45,6 +45,18 @@ public class ClearableEditText extends RelativeLayout {
edit_text
.
setImeOptions
(
EditorInfo
.
IME_ACTION_DONE
);
btn_clear
=
(
Button
)
findViewById
(
R
.
id
.
clearable_button_clear
);
btn_clear
.
setVisibility
(
RelativeLayout
.
INVISIBLE
);
// Dummy listener to fix an sdk issue: https://code.google.com/p/android/issues/detail?id=21775
edit_text
.
setOnDragListener
(
new
OnDragListener
()
{
@Override
public
boolean
onDrag
(
View
v
,
DragEvent
event
)
{
if
(
event
.
getAction
()
==
DragEvent
.
ACTION_DROP
)
return
true
;
else
return
false
;
}
});
clearText
();
showHideClearButton
();
}
...
...
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