Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lib_base
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sikang
lib_base
Commits
4bf6dcc3
Commit
4bf6dcc3
authored
Sep 24, 2019
by
sikang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug fix
parent
0b817c4a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
7 deletions
+2
-7
src/main/java/com/common/activity/ReviewHookActivity.java
+2
-7
No files found.
src/main/java/com/common/activity/ReviewHookActivity.java
View file @
4bf6dcc3
...
@@ -223,20 +223,15 @@ public class ReviewHookActivity extends BaseActivity {
...
@@ -223,20 +223,15 @@ public class ReviewHookActivity extends BaseActivity {
mDrawer
.
openDrawer
(
Gravity
.
LEFT
);
mDrawer
.
openDrawer
(
Gravity
.
LEFT
);
}
}
return
;
return
;
}
else
if
(
i
==
R
.
id
.
activity_review_activity_btn
)
{
ActivityCenter
.
start
(
ReviewHookActivity
.
this
);
return
;
}
else
if
(
i
==
R
.
id
.
activity_review_helpCenter_btn
)
{
}
else
if
(
i
==
R
.
id
.
activity_review_helpCenter_btn
)
{
HelpCenterActivity
.
start
(
ReviewHookActivity
.
this
);
HelpCenterActivity
.
start
(
ReviewHookActivity
.
this
);
return
;
return
;
}
else
if
(
i
==
R
.
id
.
activity_review_hotline_btn
)
{
}
else
if
(
i
==
R
.
id
.
activity_review_hotline_btn
)
{
DialogFactory
.
showMessageDialog
(
ReviewHookActivity
.
this
,
LibConfig
.
HOTLINE
);
DialogFactory
.
showMessageDialog
(
ReviewHookActivity
.
this
,
LibConfig
.
HOTLINE
);
}
else
if
(
i
==
R
.
id
.
activity_review_policy_btn
){
}
else
if
(
i
==
R
.
id
.
activity_review_policy_btn
)
{
String
agreement
=
"file:///android_asset/web/privacy.html?name="
+
LibConfig
.
APP_NAME
.
replace
(
" "
,
"%20"
);
String
agreement
=
"file:///android_asset/web/privacy.html?name="
+
LibConfig
.
APP_NAME
.
replace
(
" "
,
"%20"
);
WebActivity
.
start
(
ReviewHookActivity
.
this
,
getString
(
R
.
string
.
login_statement_title
),
agreement
);
WebActivity
.
start
(
ReviewHookActivity
.
this
,
getString
(
R
.
string
.
login_statement_title
),
agreement
);
}
}
else
{
//需要登录才能使用的功能
if
(
LoginManager
.
get
().
getTokenInfo
()
==
null
)
{
startLogin
();
startLogin
();
return
;
return
;
}
}
...
...
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