Commit 712c6b80 by yuichiro ogawa

Merge branch 'features/1.2.0_ogawa-y' into contract/kagome/1.0.0

# Conflicts:
#	gradle.properties
parents 440881a4 33097dae
......@@ -26,7 +26,7 @@
android:textColor="@color/text_color"
android:textSize="@dimen/app_normal_text_size" />
<TextView
<!-- <TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
......@@ -43,9 +43,9 @@
android:layout_height="wrap_content"
android:text="@string/dummy_str"
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_height="wrap_content"
android:layout_marginTop="5dp"
......@@ -62,7 +62,7 @@
android:layout_height="wrap_content"
android:text="@string/dummy_str"
android:textColor="@color/text_color"
android:textSize="@dimen/app_normal_text_size" />
android:textSize="@dimen/app_normal_text_size" />-->
<TextView
android:id="@+id/textCopyRight"
......
......@@ -416,21 +416,21 @@ public class ABookSettingFragment extends PreferenceFragment {
TextView versionText = (TextView) mainView.findViewById(R.id.textVersion);
versionText.setText(version + "(" + releaseDate + ")\n" + "build:" + RawResourceUtil.getShortGitHash(getActivity()));
TextView hpText = (TextView) mainView.findViewById(R.id.textHP);
hpText.setText(homePage);
// TextView hpText = (TextView) mainView.findViewById(R.id.textHP);
// hpText.setText(homePage);
TextView contractText = (TextView) mainView.findViewById(R.id.textContact);
contractText.setText(contactMail);
contractText.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Intent mailIntent = new Intent();
mailIntent.setAction(Intent.ACTION_SEND);
mailIntent.setType("text/plain");
mailIntent.putExtra(Intent.EXTRA_EMAIL, new String[] { contactMail });
startActivity(mailIntent);
}
});
// TextView contractText = (TextView) mainView.findViewById(R.id.textContact);
// contractText.setText(contactMail);
// contractText.setOnClickListener(new OnClickListener() {
// @Override
// public void onClick(View v) {
// Intent mailIntent = new Intent();
// mailIntent.setAction(Intent.ACTION_SEND);
// mailIntent.setType("text/plain");
// mailIntent.putExtra(Intent.EXTRA_EMAIL, new String[] { contactMail });
// startActivity(mailIntent);
// }
// });
TextView copyrightText = (TextView) mainView.findViewById(R.id.textCopyRight);
copyrightText.setText(copyright);
......
......@@ -87,10 +87,10 @@ repeat_default=true
#Setting Info(設定画面のABookについての設定情報)
version_name=1.0.0
release_date=2019/12/23
release_date=2019/12/24
copy_right=2016 AGENTEC Co.,Ltd. All rights reserved.
hope_page=http://www.agentec.jp
contact_email=abook-appsupport@agentec.jp
contact_email=
#Log Settings
log_level=2
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment