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
3e285555
Commit
3e285555
authored
Jul 12, 2019
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/1.1.0_34413' into 'feature/1.1.0'
targetSdkVersion 28 対応によりプッシュメッセージ表示修正 See merge request
!23
parents
f151b2f6
5310181d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
ABVJE_Launcher_Android/AndroidManifest.xml
+1
-3
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVUIActivity.java
+4
-0
No files found.
ABVJE_Launcher_Android/AndroidManifest.xml
View file @
3e285555
...
...
@@ -194,9 +194,7 @@
android:configChanges=
"keyboardHidden"
android:theme=
"@android:style/Theme.NoTitleBar.Fullscreen"
/>
<activity
android:name=
"jp.agentec.abook.abv.ui.common.activity.ShowPushMessageDailogActivity"
android:theme=
"@android:style/Theme.Translucent.NoTitleBar"
android:configChanges=
"orientation|screenSize"
>
android:theme=
"@android:style/Theme.Translucent.NoTitleBar"
>
<intent-filter>
<action
android:name=
"android.intent.action.MAIN"
/>
</intent-filter>
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVUIActivity.java
View file @
3e285555
...
...
@@ -28,6 +28,7 @@ import jp.agentec.abook.abv.ui.home.activity.ABookSettingActivity;
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
;
...
...
@@ -60,7 +61,10 @@ public abstract class ABVUIActivity extends ABVAuthenticatedActivity {
protected
void
onCreate
(
Bundle
savedInstanceState
)
{
super
.
onCreate
(
savedInstanceState
);
// OS 8.0で起きるバグ(ダイアログActivity表示後(windowIsTranslucent: true)、画面を固定するとCrashされる問題対策)
if
(
android
.
os
.
Build
.
VERSION
.
SDK_INT
!=
Build
.
VERSION_CODES
.
O
)
{
setPortraitIfNormal
();
}
startRefresh
=
true
;
ABVEnvironment
.
getInstance
().
enableToastMessage
=
true
;
...
...
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