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
b862a2ec
Commit
b862a2ec
authored
Jun 23, 2020
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ベースシーン登録時のシーン登録失敗時、
再度リトライダイアログからCancelボタンでシーン画像選択画面非表示されない問題対応
parent
74774ac3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
+1
-2
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/DeviceImageListActivity.java
+1
-2
No files found.
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/DeviceImageListActivity.java
View file @
b862a2ec
...
...
@@ -450,7 +450,7 @@ public class DeviceImageListActivity extends ABVUIActivity {
public
void
run
()
{
closeProgressPopup
();
//ベースシーンアップロード時、ベースシーン登録完了の場合、Cancelでシーン画像選択画面非表示
if
(
mIsBaseSceneUpload
&&
mIsBaseSceneUploadSuccess
)
{
if
(
mIsBaseSceneUpload
)
{
AlertDialogUtil
.
showAlertDialog
(
DeviceImageListActivity
.
this
,
R
.
string
.
app_name
,
R
.
string
.
msg_image_select_send_fail_retry
,
new
DialogInterface
.
OnClickListener
()
{
@Override
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
//OKボタン
...
...
@@ -461,7 +461,6 @@ public class DeviceImageListActivity extends ABVUIActivity {
},
new
DialogInterface
.
OnClickListener
()
{
//Cancelボタン
@Override
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
activityClose
();
}
});
...
...
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