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
0af7b9ef
Commit
0af7b9ef
authored
May 16, 2023
by
Kazuyuki Hida
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ログイン直後の規約同意で、規約内容の取得に失敗した場合、ログアウトするようにした。
parent
2291d680
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVNoAuthenticatedActivity.java
+6
-3
No files found.
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVNoAuthenticatedActivity.java
View file @
0af7b9ef
...
...
@@ -92,7 +92,12 @@ public abstract class ABVNoAuthenticatedActivity extends ABVActivity {
*/
protected
void
showMainActivity
(
String
loginId
)
{
confirmResult
=
AgreementToTermsActivity
.
confirmAgreement
(
this
,
REQUEST_AGREEMENT_FROM_LOGIN
,
isNormalSize
(),
null
);
confirmResult
=
AgreementToTermsActivity
.
confirmAgreement
(
this
,
REQUEST_AGREEMENT_FROM_LOGIN
,
isNormalSize
(),
new
Runnable
()
{
@Override
public
void
run
()
{
LogoutHelper
.
logout
(
ABVNoAuthenticatedActivity
.
this
);
}
});
switch
(
confirmResult
)
{
case
DISABLE:
case
EMPTY:
...
...
@@ -101,8 +106,6 @@ public abstract class ABVNoAuthenticatedActivity extends ABVActivity {
doShowMainActivity
();
break
;
case
FAILED:
confirmResult
=
AgreementToTermsActivity
.
Result
.
AGREED
;
doShowMainActivity
();
break
;
case
CONFIRM:
// onActivityResultを待つ
...
...
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