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
30444f63
Commit
30444f63
authored
Jun 22, 2020
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
THETA接続エラー発生し、インジケーター非表示する問題対応
parent
c537891a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/theta/ThetaCameraActivity.java
+3
-2
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/theta/ThetaImageListActivity.java
+2
-1
No files found.
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/theta/ThetaCameraActivity.java
View file @
30444f63
...
...
@@ -198,7 +198,6 @@ public class ThetaCameraActivity extends ThetaActivity {
* @param fileId ファイルID
*/
public
void
shootTaskFinish
(
final
String
fileId
)
{
closeProgressPopup
();
handler
.
post
(
new
Runnable
()
{
@Override
public
void
run
()
{
...
...
@@ -206,6 +205,7 @@ public class ThetaCameraActivity extends ThetaActivity {
if
(
fileId
.
equals
(
ABookValues
.
FAIL
))
{
thetaConnectError
(
R
.
string
.
msg_theta_shoot_fail
);
}
else
{
closeProgressPopup
();
Intent
intent
=
new
Intent
();
intent
.
putExtra
(
ABookKeys
.
THETA_FILE_ID
,
fileId
);
intent
.
setClassName
(
getPackageName
(),
ThetaImagePreviewActivity
.
class
.
getName
());
...
...
@@ -220,7 +220,7 @@ public class ThetaCameraActivity extends ThetaActivity {
* @param mJpegInputStream Live画像データ
*/
public
void
showLiveViewTaskFinish
(
MJpegInputStream
mJpegInputStream
)
{
closeProgressPopup
();
if
(
mJpegInputStream
!=
null
)
{
mLiveView
.
setSource
(
mJpegInputStream
);
new
GetOptionExposureTask
(
ThetaCameraActivity
.
this
).
execute
();
...
...
@@ -248,6 +248,7 @@ public class ThetaCameraActivity extends ThetaActivity {
*/
public
void
getOptionExposureTaskFinish
(
String
exposure
)
{
if
(
exposure
!=
null
)
{
closeProgressPopup
();
int
progress
=
mExposureValues
.
indexOf
(
exposure
);
if
(
progress
!=
1
)
{
mExposureSeekBar
.
setProgress
(
progress
);
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/theta/ThetaImageListActivity.java
View file @
30444f63
...
...
@@ -184,10 +184,11 @@ public class ThetaImageListActivity extends ThetaActivity {
imageListArrayAdapter
.
notifyDataSetChanged
();
}
});
closeProgressPopup
();
}
else
{
Logger
.
e
(
TAG
,
"failed to delete image"
);
thetaConnectError
(
R
.
string
.
msg_theta_image_delete_fail
);
}
closeProgressPopup
();
}
}
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