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
da08b453
Commit
da08b453
authored
Feb 27, 2025
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#64361 Android14対応
parent
dbcd3694
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
27 additions
and
5 deletions
+27
-5
ABVJE_UI_Android/src/jp/agentec/abook/abv/launcher/android/BackgroundDownloadService.java
+5
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/ChatWebViewActivity.java
+5
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/DeviceImageListActivity.java
+6
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/theta/ThetaActivity.java
+11
-2
No files found.
ABVJE_UI_Android/src/jp/agentec/abook/abv/launcher/android/BackgroundDownloadService.java
View file @
da08b453
...
@@ -122,7 +122,11 @@ public class BackgroundDownloadService extends Service {
...
@@ -122,7 +122,11 @@ public class BackgroundDownloadService extends Service {
request
.
setDestinationUri
(
Uri
.
fromFile
(
file
));
request
.
setDestinationUri
(
Uri
.
fromFile
(
file
));
// Registers function to listen to the completion of the download.
// Registers function to listen to the completion of the download.
registerReceiver
(
onDownloadComplete
,
new
IntentFilter
(
DownloadManager
.
ACTION_DOWNLOAD_COMPLETE
));
if
(
Build
.
VERSION
.
SDK_INT
>=
Build
.
VERSION_CODES
.
TIRAMISU
)
{
registerReceiver
(
onDownloadComplete
,
new
IntentFilter
(
DownloadManager
.
ACTION_DOWNLOAD_COMPLETE
),
RECEIVER_EXPORTED
);
}
else
{
registerReceiver
(
onDownloadComplete
,
new
IntentFilter
(
DownloadManager
.
ACTION_DOWNLOAD_COMPLETE
));
}
// Download 開始
// Download 開始
Logger
.
d
(
LOG_TAG
,
"mDownloadManager.enqueue(request)."
);
Logger
.
d
(
LOG_TAG
,
"mDownloadManager.enqueue(request)."
);
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/ChatWebViewActivity.java
View file @
da08b453
...
@@ -630,7 +630,11 @@ public class ChatWebViewActivity extends CommunicationWebViewActivity implements
...
@@ -630,7 +630,11 @@ public class ChatWebViewActivity extends CommunicationWebViewActivity implements
IntentFilter
tempIntent
=
new
IntentFilter
(
DownloadManager
.
ACTION_DOWNLOAD_COMPLETE
);
IntentFilter
tempIntent
=
new
IntentFilter
(
DownloadManager
.
ACTION_DOWNLOAD_COMPLETE
);
tempIntent
.
addAction
(
WifiManager
.
NETWORK_STATE_CHANGED_ACTION
);
tempIntent
.
addAction
(
WifiManager
.
NETWORK_STATE_CHANGED_ACTION
);
tempIntent
.
addAction
(
ConnectivityManager
.
CONNECTIVITY_ACTION
);
tempIntent
.
addAction
(
ConnectivityManager
.
CONNECTIVITY_ACTION
);
registerReceiver
(
receiver
,
tempIntent
);
if
(
Build
.
VERSION
.
SDK_INT
>=
Build
.
VERSION_CODES
.
TIRAMISU
)
{
registerReceiver
(
receiver
,
tempIntent
,
RECEIVER_EXPORTED
);
}
else
{
registerReceiver
(
receiver
,
tempIntent
);
}
}
}
private
void
loadWebViewResource
()
{
private
void
loadWebViewResource
()
{
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/DeviceImageListActivity.java
View file @
da08b453
package
jp
.
agentec
.
abook
.
abv
.
ui
.
viewer
.
activity
;
package
jp
.
agentec
.
abook
.
abv
.
ui
.
viewer
.
activity
;
import
android.app.Dialog
;
import
android.app.Dialog
;
import
android.app.DownloadManager
;
import
android.content.BroadcastReceiver
;
import
android.content.BroadcastReceiver
;
import
android.content.Context
;
import
android.content.Context
;
import
android.content.DialogInterface
;
import
android.content.DialogInterface
;
...
@@ -587,7 +588,11 @@ public class DeviceImageListActivity extends ABVUIActivity {
...
@@ -587,7 +588,11 @@ public class DeviceImageListActivity extends ABVUIActivity {
private
void
wifiScanStart
()
{
private
void
wifiScanStart
()
{
Logger
.
v
(
TAG
,
"wifiScanStart"
);
Logger
.
v
(
TAG
,
"wifiScanStart"
);
showProgressPopup
();
showProgressPopup
();
registerReceiver
(
wifiReceiver
,
new
IntentFilter
(
WifiManager
.
SCAN_RESULTS_AVAILABLE_ACTION
));
if
(
Build
.
VERSION
.
SDK_INT
>=
Build
.
VERSION_CODES
.
TIRAMISU
)
{
registerReceiver
(
wifiReceiver
,
new
IntentFilter
(
WifiManager
.
SCAN_RESULTS_AVAILABLE_ACTION
),
RECEIVER_EXPORTED
);
}
else
{
registerReceiver
(
wifiReceiver
,
new
IntentFilter
(
WifiManager
.
SCAN_RESULTS_AVAILABLE_ACTION
));
}
mWifiManager
.
startScan
();
mWifiManager
.
startScan
();
}
}
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/theta/ThetaActivity.java
View file @
da08b453
...
@@ -6,6 +6,7 @@ import android.content.DialogInterface;
...
@@ -6,6 +6,7 @@ import android.content.DialogInterface;
import
android.content.Intent
;
import
android.content.Intent
;
import
android.content.IntentFilter
;
import
android.content.IntentFilter
;
import
android.net.wifi.WifiManager
;
import
android.net.wifi.WifiManager
;
import
android.os.Build
;
import
android.os.Bundle
;
import
android.os.Bundle
;
import
com.theta.helper.ThetaHelper
;
import
com.theta.helper.ThetaHelper
;
...
@@ -78,7 +79,11 @@ public class ThetaActivity extends ABVUIActivity {
...
@@ -78,7 +79,11 @@ public class ThetaActivity extends ABVUIActivity {
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
changeProgressPopup
(
getString
(
R
.
string
.
progress
));
changeProgressPopup
(
getString
(
R
.
string
.
progress
));
//現在接続状態なのかチェック
//現在接続状態なのかチェック
registerReceiver
(
wifiReceiver
,
new
IntentFilter
(
WifiManager
.
SCAN_RESULTS_AVAILABLE_ACTION
));
if
(
Build
.
VERSION
.
SDK_INT
>=
Build
.
VERSION_CODES
.
TIRAMISU
)
{
registerReceiver
(
wifiReceiver
,
new
IntentFilter
(
WifiManager
.
SCAN_RESULTS_AVAILABLE_ACTION
),
RECEIVER_EXPORTED
);
}
else
{
registerReceiver
(
wifiReceiver
,
new
IntentFilter
(
WifiManager
.
SCAN_RESULTS_AVAILABLE_ACTION
));
}
mWifiManager
.
startScan
();
mWifiManager
.
startScan
();
mWifiScanType
=
Constant
.
WifiScanType
.
ThetaConnectError
;
mWifiScanType
=
Constant
.
WifiScanType
.
ThetaConnectError
;
}
}
...
@@ -93,7 +98,11 @@ public class ThetaActivity extends ABVUIActivity {
...
@@ -93,7 +98,11 @@ public class ThetaActivity extends ABVUIActivity {
Logger
.
i
(
TAG
,
"closeThetaCameraActivity"
);
Logger
.
i
(
TAG
,
"closeThetaCameraActivity"
);
showProgressPopup
();
showProgressPopup
();
//現在接続状態なのかチェック
//現在接続状態なのかチェック
registerReceiver
(
wifiReceiver
,
new
IntentFilter
(
WifiManager
.
SCAN_RESULTS_AVAILABLE_ACTION
));
if
(
Build
.
VERSION
.
SDK_INT
>=
Build
.
VERSION_CODES
.
TIRAMISU
)
{
registerReceiver
(
wifiReceiver
,
new
IntentFilter
(
WifiManager
.
SCAN_RESULTS_AVAILABLE_ACTION
),
RECEIVER_EXPORTED
);
}
else
{
registerReceiver
(
wifiReceiver
,
new
IntentFilter
(
WifiManager
.
SCAN_RESULTS_AVAILABLE_ACTION
));
}
mWifiManager
.
startScan
();
mWifiManager
.
startScan
();
mWifiScanType
=
Constant
.
WifiScanType
.
CloseCameraActivity
;
mWifiScanType
=
Constant
.
WifiScanType
.
CloseCameraActivity
;
}
}
...
...
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