Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
android
/
dayu
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
93cabfd2
authored
a year ago
by
wukun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
24.1.16
parent
6c426dba
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletions
app/src/main/java/com/dayu/bigfish/ui/MainActivity.java
app/src/main/java/com/dayu/bigfish/ui/MainActivity.java
View file @
93cabfd2
...
...
@@ -769,7 +769,13 @@ public class MainActivity extends BaseActivity<MainPresenter, ActivityMainBindin
if
(
confirm
)
{
UserInfo
info
=
UserManager
.
getInstance
().
getUser
();
Bundle
bundle
=
new
Bundle
();
bundle
.
putString
(
Constants
.
URL
,
url
+
"&accountId="
+
info
.
getAccountId
()+
"&token="
+
info
.
getToken
());
String
symbol
;
if
(
url
.
contains
(
"?"
)){
symbol
=
"&"
;
}
else
{
symbol
=
"?"
;
}
bundle
.
putString
(
Constants
.
URL
,
url
+
symbol
+
"accountId="
+
info
.
getAccountId
()+
"&token="
+
info
.
getToken
());
// bundle.putString(Constants.URL, "https://www.baidu.com");
bundle
.
putString
(
Constants
.
TITLE
,
str
);
startActivity
(
CommeWebViewActivity
.
class
,
bundle
);
...
...
This diff is collapsed.
Click to expand it.
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