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
33097dae
Commit
33097dae
authored
Dec 24, 2019
by
yuichiro ogawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
バージョンのリセット及びアプリケーション情報の修正
parent
f04571a9
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
21 deletions
+21
-21
ABVJE_UI_Android/res/layout/about_app.xml
+4
-4
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/ABookSettingFragment.java
+14
-14
gradle.properties
+3
-3
No files found.
ABVJE_UI_Android/res/layout/about_app.xml
View file @
33097dae
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
android:textColor=
"@color/text_color"
android:textColor=
"@color/text_color"
android:textSize=
"@dimen/app_normal_text_size"
/>
android:textSize=
"@dimen/app_normal_text_size"
/>
<TextView
<!--
<TextView
android:layout_width="wrap_content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:layout_marginTop="5dp"
...
@@ -43,9 +43,9 @@
...
@@ -43,9 +43,9 @@
android:layout_height="wrap_content"
android:layout_height="wrap_content"
android:text="@string/dummy_str"
android:text="@string/dummy_str"
android:textColor="@color/text_color"
android:textColor="@color/text_color"
android:textSize=
"@dimen/app_normal_text_size"
/>
android:textSize="@dimen/app_normal_text_size" />
-->
<TextView
<!--
<TextView
android:layout_width="wrap_content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:layout_marginTop="5dp"
...
@@ -62,7 +62,7 @@
...
@@ -62,7 +62,7 @@
android:layout_height="wrap_content"
android:layout_height="wrap_content"
android:text="@string/dummy_str"
android:text="@string/dummy_str"
android:textColor="@color/text_color"
android:textColor="@color/text_color"
android:textSize=
"@dimen/app_normal_text_size"
/>
android:textSize="@dimen/app_normal_text_size" />
-->
<TextView
<TextView
android:id=
"@+id/textCopyRight"
android:id=
"@+id/textCopyRight"
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/ABookSettingFragment.java
View file @
33097dae
...
@@ -416,21 +416,21 @@ public class ABookSettingFragment extends PreferenceFragment {
...
@@ -416,21 +416,21 @@ public class ABookSettingFragment extends PreferenceFragment {
TextView
versionText
=
(
TextView
)
mainView
.
findViewById
(
R
.
id
.
textVersion
);
TextView
versionText
=
(
TextView
)
mainView
.
findViewById
(
R
.
id
.
textVersion
);
versionText
.
setText
(
version
+
"("
+
releaseDate
+
")\n"
+
"build:"
+
RawResourceUtil
.
getShortGitHash
(
getActivity
()));
versionText
.
setText
(
version
+
"("
+
releaseDate
+
")\n"
+
"build:"
+
RawResourceUtil
.
getShortGitHash
(
getActivity
()));
TextView
hpText
=
(
TextView
)
mainView
.
findViewById
(
R
.
id
.
textHP
);
//
TextView hpText = (TextView) mainView.findViewById(R.id.textHP);
hpText
.
setText
(
homePage
);
//
hpText.setText(homePage);
TextView
contractText
=
(
TextView
)
mainView
.
findViewById
(
R
.
id
.
textContact
);
//
TextView contractText = (TextView) mainView.findViewById(R.id.textContact);
contractText
.
setText
(
contactMail
);
//
contractText.setText(contactMail);
contractText
.
setOnClickListener
(
new
OnClickListener
()
{
//
contractText.setOnClickListener(new OnClickListener() {
@Override
//
@Override
public
void
onClick
(
View
v
)
{
//
public void onClick(View v) {
Intent
mailIntent
=
new
Intent
();
//
Intent mailIntent = new Intent();
mailIntent
.
setAction
(
Intent
.
ACTION_SEND
);
//
mailIntent.setAction(Intent.ACTION_SEND);
mailIntent
.
setType
(
"text/plain"
);
//
mailIntent.setType("text/plain");
mailIntent
.
putExtra
(
Intent
.
EXTRA_EMAIL
,
new
String
[]
{
contactMail
});
//
mailIntent.putExtra(Intent.EXTRA_EMAIL, new String[] { contactMail });
startActivity
(
mailIntent
);
//
startActivity(mailIntent);
}
//
}
});
//
});
TextView
copyrightText
=
(
TextView
)
mainView
.
findViewById
(
R
.
id
.
textCopyRight
);
TextView
copyrightText
=
(
TextView
)
mainView
.
findViewById
(
R
.
id
.
textCopyRight
);
copyrightText
.
setText
(
copyright
);
copyrightText
.
setText
(
copyright
);
...
...
gradle.properties
View file @
33097dae
...
@@ -86,11 +86,11 @@ is_check_invalid_passward_limit=true
...
@@ -86,11 +86,11 @@ is_check_invalid_passward_limit=true
repeat_default
=
true
repeat_default
=
true
#Setting Info(設定画面のABookについての設定情報)
#Setting Info(設定画面のABookについての設定情報)
version_name
=
1.
2
.0
version_name
=
1.
0
.0
release_date
=
2019/1
0/07
release_date
=
2019/1
2/24
copy_right
=
2016 AGENTEC Co.,Ltd. All rights reserved.
copy_right
=
2016 AGENTEC Co.,Ltd. All rights reserved.
hope_page
=
http://www.agentec.jp
hope_page
=
http://www.agentec.jp
contact_email
=
abook-appsupport@agentec.jp
contact_email
=
#Log Settings
#Log Settings
log_level
=
2
log_level
=
2
...
...
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