Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
com.ccwangluo.accelerator
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sheteng
com.ccwangluo.accelerator
Commits
59911a2d
Commit
59911a2d
authored
Jun 27, 2019
by
Mygod
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update PointerIcon for ServiceButton for devices with mouse
parent
d9c72169
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
mobile/src/main/java/com/github/shadowsocks/widget/ServiceButton.kt
.../main/java/com/github/shadowsocks/widget/ServiceButton.kt
+6
-1
No files found.
mobile/src/main/java/com/github/shadowsocks/widget/ServiceButton.kt
View file @
59911a2d
...
...
@@ -22,7 +22,9 @@ package com.github.shadowsocks.widget
import
android.content.Context
import
android.graphics.drawable.Drawable
import
android.os.Build
import
android.util.AttributeSet
import
android.view.PointerIcon
import
android.view.View
import
androidx.annotation.DrawableRes
import
androidx.appcompat.widget.TooltipCompat
...
...
@@ -80,7 +82,10 @@ class ServiceButton @JvmOverloads constructor(context: Context, attrs: Attribute
checked
=
state
==
BaseService
.
State
.
Connected
refreshDrawableState
()
TooltipCompat
.
setTooltipText
(
this
,
context
.
getString
(
if
(
state
.
canStop
)
R
.
string
.
stop
else
R
.
string
.
connect
))
isEnabled
=
state
.
canStop
||
state
==
BaseService
.
State
.
Stopped
val
enabled
=
state
.
canStop
||
state
==
BaseService
.
State
.
Stopped
isEnabled
=
enabled
if
(
Build
.
VERSION
.
SDK_INT
>=
24
)
pointerIcon
=
PointerIcon
.
getSystemIcon
(
context
,
if
(
enabled
)
PointerIcon
.
TYPE_HAND
else
PointerIcon
.
TYPE_WAIT
)
}
private
fun
changeState
(
icon
:
AnimatedVectorDrawableCompat
,
animate
:
Boolean
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment