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
4e5ddf88
Commit
4e5ddf88
authored
Oct 26, 2022
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #50460【api31 @Form】アプリ起動中に、受信したプッシュメッセージを表示する際にアプリが落ちる場合がある
parent
83644ee9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVUIActivity.java
+9
-3
No files found.
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVUIActivity.java
View file @
4e5ddf88
...
...
@@ -29,6 +29,7 @@ import jp.agentec.abook.abv.ui.home.helper.ActivityHandlingHelper;
import
android.content.DialogInterface
;
import
android.content.Intent
;
import
android.os.Build
;
import
android.os.Bundle
;
import
android.view.KeyEvent
;
import
android.view.animation.Animation
;
...
...
@@ -62,9 +63,14 @@ public abstract class ABVUIActivity extends ABVAuthenticatedActivity {
@Override
protected
void
onCreate
(
Bundle
savedInstanceState
)
{
super
.
onCreate
(
savedInstanceState
);
setPortraitIfNormal
();
//Bug #50460対応(プッシュメッセージ受信後のダイアログ表示時、Android8.0のみ問題発生するので、チェックして画面固定処理しない)
if
(
this
instanceof
ShowPushMessageDailogActivity
)
{
if
(
android
.
os
.
Build
.
VERSION
.
SDK_INT
!=
Build
.
VERSION_CODES
.
O
)
{
setPortraitIfNormal
();
}
}
else
{
setPortraitIfNormal
();
}
startRefresh
=
true
;
ABVEnvironment
.
getInstance
().
enableToastMessage
=
true
;
// dateFormat ="yyyy'" + getResources().getString(R.string.date_format_year) + "'MM'" + getResources().getString(R.string.date_format_month) + "'dd'" + getResources().getString(R.string.date_format_day) + "'HH:mm:ss";
...
...
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