Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abook_check
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
abook_android
abook_check
Commits
f3fa46d2
Commit
f3fa46d2
authored
Apr 15, 2021
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #42435 パノラマ(動画・画像)とオブジェクトコンテンツでメールアクションボタン問題
parent
fd6a2268
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
0 deletions
+17
-0
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/HTMLWebViewActivity.java
+9
-0
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/HTMLXWalkWebViewActivity.java
+8
-0
No files found.
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/HTMLWebViewActivity.java
View file @
f3fa46d2
...
...
@@ -291,6 +291,15 @@ public class HTMLWebViewActivity extends ParentWebViewActivity {
}
return
true
;
}
//mailtoスキームチェック
String
mailUrl
=
ABookKeys
.
MAIL_TO_URL
;
if
(
url
.
length
()
>
mailUrl
.
length
()
&&
mailUrl
.
equals
(
url
.
substring
(
0
,
mailUrl
.
length
())))
{
//メーラー起動
Intent
intent
=
new
Intent
(
Intent
.
ACTION_SENDTO
,
Uri
.
parse
(
url
));
startActivity
(
intent
);
return
true
;
}
return
false
;
}
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/HTMLXWalkWebViewActivity.java
View file @
f3fa46d2
...
...
@@ -352,6 +352,14 @@ public class HTMLXWalkWebViewActivity extends ParentWebViewActivity {
}
else
if
(
url
.
startsWith
(
ABookKeys
.
PING
))
{
return
true
;
}
//mailtoスキームチェック
String
mailUrl
=
ABookKeys
.
MAIL_TO_URL
;
if
(
url
.
length
()
>
mailUrl
.
length
()
&&
mailUrl
.
equals
(
url
.
substring
(
0
,
mailUrl
.
length
())))
{
//メーラー起動
Intent
intent
=
new
Intent
(
Intent
.
ACTION_SENDTO
,
Uri
.
parse
(
url
));
startActivity
(
intent
);
return
true
;
}
return
false
;
}
});
...
...
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