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
ed984cb0
Commit
ed984cb0
authored
Feb 19, 2019
by
Lee Jaebin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
要らないメソッド・リソース削除
parent
19386299
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
51 deletions
+0
-51
ABVJE_Res_Default_Android/res/values-ja/strings.xml
+0
-3
ABVJE_Res_Default_Android/res/values-ko/strings.xml
+0
-3
ABVJE_Res_Default_Android/res/values/strings.xml
+0
-3
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/ABookSettingFragment.java
+0
-42
No files found.
ABVJE_Res_Default_Android/res/values-ja/strings.xml
View file @
ed984cb0
...
...
@@ -3,9 +3,6 @@
<string
name=
"arg_required"
>
%1$sを入力してください。
</string>
<string
name=
"arg_number_range"
>
%1$sは%2$sから%3$sの間の数値にしてくだしさい。
</string>
<string
name=
"progress"
>
Loading
…
</string>
<string
name=
"folder_name"
>
新規フォルダ名
</string>
<string
name=
"folder_delete"
>
フォルダ削除
</string>
<string
name=
"folder_move"
>
フォルダ移動
</string>
<string
name=
"edit"
>
編集
</string>
<string
name=
"ok"
>
OK
</string>
<string
name=
"yes"
>
はい
</string>
...
...
ABVJE_Res_Default_Android/res/values-ko/strings.xml
View file @
ed984cb0
...
...
@@ -3,9 +3,6 @@
<string
name=
"arg_required"
>
%1$s를 입력해 주세요.
</string>
<string
name=
"arg_number_range"
>
%1$s는%2$s〜%3$s범위의 숫자로 입력해 주세요.
</string>
<string
name=
"progress"
>
로딩
…
</string>
<string
name=
"folder_name"
>
새 폴더 이름
</string>
<string
name=
"folder_delete"
>
폴더 삭제
</string>
<string
name=
"folder_move"
>
폴더 이동
</string>
<string
name=
"edit"
>
편집
</string>
<string
name=
"ok"
>
OK
</string>
<string
name=
"yes"
>
예
</string>
...
...
ABVJE_Res_Default_Android/res/values/strings.xml
View file @
ed984cb0
...
...
@@ -3,9 +3,6 @@
<string
name=
"arg_required"
>
Please input %1$s.
</string>
<string
name=
"arg_number_range"
>
%1$s must be between %2$s and %3$s.
</string>
<string
name=
"progress"
>
Loading
…
</string>
<string
name=
"folder_name"
>
New folder name
</string>
<string
name=
"folder_delete"
>
Delete folder
</string>
<string
name=
"folder_move"
>
Move folder
</string>
<string
name=
"edit"
>
Edit
</string>
<string
name=
"ok"
>
OK
</string>
<string
name=
"yes"
>
Yes
</string>
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/ABookSettingFragment.java
View file @
ed984cb0
package
jp
.
agentec
.
abook
.
abv
.
ui
.
home
.
activity
;
import
android.app.AlarmManager
;
import
android.app.AlertDialog
;
import
android.app.DownloadManager
;
import
android.app.DownloadManager.Request
;
import
android.app.PendingIntent
;
import
android.content.Context
;
import
android.content.DialogInterface
;
import
android.content.Intent
;
...
...
@@ -34,7 +32,6 @@ import java.io.File;
import
jp.agentec.abook.abv.bl.acms.client.AcmsClient
;
import
jp.agentec.abook.abv.bl.acms.client.parameters.AppLastVersionParameters
;
import
jp.agentec.abook.abv.bl.acms.type.AcmsApis
;
import
jp.agentec.abook.abv.bl.acms.type.LoginMode
;
import
jp.agentec.abook.abv.bl.common.ABVEnvironment
;
import
jp.agentec.abook.abv.bl.common.CommonExecutor
;
import
jp.agentec.abook.abv.bl.common.Constant
;
...
...
@@ -57,7 +54,6 @@ import jp.agentec.abook.abv.ui.common.dialog.ABookAlertDialog;
import
jp.agentec.abook.abv.ui.common.helper.ProgressDialogHelper
;
import
jp.agentec.abook.abv.ui.common.util.ABVToastUtil
;
import
jp.agentec.abook.abv.ui.common.util.AlertDialogUtil
;
import
jp.agentec.abook.abv.ui.common.util.ClipboardUtil
;
import
jp.agentec.abook.abv.ui.home.helper.ABookPermissionHelper
;
import
jp.agentec.adf.util.DateTimeFormat
;
import
jp.agentec.adf.util.DateTimeUtil
;
...
...
@@ -350,44 +346,6 @@ public class ABookSettingFragment extends PreferenceFragment {
});
}
private
void
showTermOfUseDialog
()
{
ProgressDialogHelper
.
showProgressPopup
(
getActivity
(),
true
);
CommonExecutor
.
execute
(
new
Runnable
()
{
@Override
public
void
run
()
{
final
String
msg
=
RawResourceUtil
.
readAsString
(
getActivity
(),
R
.
raw
.
term_of_use
);
if
(
msg
==
null
)
{
ABVToastUtil
.
showMakeText
(
getActivity
(),
R
.
string
.
ERROR
,
Toast
.
LENGTH_LONG
);
ProgressDialogHelper
.
closeProgressPopup
();
return
;
}
handler
.
post
(
new
Runnable
()
{
@Override
public
void
run
()
{
ABookAlertDialog
aBookAlertDialog
=
AlertDialogUtil
.
scrollableAlertDialog
(
getActivity
(),
R
.
string
.
term_of_use
,
msg
);
aBookAlertDialog
.
setPositiveButton
(
R
.
string
.
ok
,
null
);
aBookAlertDialog
.
setOnShowListener
(
new
DialogInterface
.
OnShowListener
()
{
@Override
public
void
onShow
(
DialogInterface
dialog
)
{
ProgressDialogHelper
.
closeProgressPopup
();
}
});
aBookAlertDialog
.
setOnDismissListener
(
new
DialogInterface
.
OnDismissListener
()
{
@Override
public
void
onDismiss
(
DialogInterface
dialog
)
{
ProgressDialogHelper
.
closeProgressPopup
();
}
});
showAlertDialog
(
aBookAlertDialog
);
}
});
}
});
}
// TODO ABVSplashAcitivityとソースが重複するため、一元化する Jang
private
void
showCheckAppDialog
()
throws
Exception
{
// アプリのバージョンを確認する
...
...
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