mirror of
https://github.com/SimpleMobileTools/Simple-Calendar.git
synced 2025-02-16 20:00:39 +01:00
handle rotation change properly
This commit is contained in:
parent
fe2915d4fd
commit
da903171df
@ -23,7 +23,6 @@ import butterknife.OnClick;
|
|||||||
|
|
||||||
public class AboutActivity extends AppCompatActivity {
|
public class AboutActivity extends AppCompatActivity {
|
||||||
@BindView(R.id.about_copyright) TextView mCopyright;
|
@BindView(R.id.about_copyright) TextView mCopyright;
|
||||||
@BindView(R.id.about_version) TextView mVersion;
|
|
||||||
@BindView(R.id.about_email) TextView mEmailTV;
|
@BindView(R.id.about_email) TextView mEmailTV;
|
||||||
@BindView(R.id.about_rate_us) View mRateUs;
|
@BindView(R.id.about_rate_us) View mRateUs;
|
||||||
|
|
||||||
@ -37,7 +36,6 @@ public class AboutActivity extends AppCompatActivity {
|
|||||||
mRes = getResources();
|
mRes = getResources();
|
||||||
|
|
||||||
setupEmail();
|
setupEmail();
|
||||||
setupVersion();
|
|
||||||
setupCopyright();
|
setupCopyright();
|
||||||
setupRateUs();
|
setupRateUs();
|
||||||
}
|
}
|
||||||
@ -50,15 +48,10 @@ public class AboutActivity extends AppCompatActivity {
|
|||||||
mEmailTV.setMovementMethod(LinkMovementMethod.getInstance());
|
mEmailTV.setMovementMethod(LinkMovementMethod.getInstance());
|
||||||
}
|
}
|
||||||
|
|
||||||
private void setupVersion() {
|
|
||||||
final String versionName = BuildConfig.VERSION_NAME;
|
|
||||||
final String versionText = String.format(mRes.getString(R.string.version), versionName);
|
|
||||||
mVersion.setText(versionText);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void setupCopyright() {
|
private void setupCopyright() {
|
||||||
|
final String versionName = BuildConfig.VERSION_NAME;
|
||||||
final int year = Calendar.getInstance().get(Calendar.YEAR);
|
final int year = Calendar.getInstance().get(Calendar.YEAR);
|
||||||
final String copyrightText = String.format(mRes.getString(R.string.copyright), year);
|
final String copyrightText = String.format(mRes.getString(R.string.copyright), versionName, year);
|
||||||
mCopyright.setText(copyrightText);
|
mCopyright.setText(copyrightText);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,10 +1,18 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<RelativeLayout
|
<ScrollView
|
||||||
android:id="@+id/about_holder"
|
android:id="@+id/about_scrollview"
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_margin="@dimen/activity_margin">
|
android:fillViewport="true">
|
||||||
|
|
||||||
|
<RelativeLayout
|
||||||
|
android:id="@+id/about_holder"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:paddingBottom="@dimen/activity_margin"
|
||||||
|
android:paddingLeft="@dimen/activity_margin"
|
||||||
|
android:paddingTop="@dimen/activity_margin">
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/about_website"
|
android:id="@+id/about_website"
|
||||||
@ -74,20 +82,14 @@
|
|||||||
android:layout_toRightOf="@+id/about_facebook"
|
android:layout_toRightOf="@+id/about_facebook"
|
||||||
android:src="@mipmap/gplus"/>
|
android:src="@mipmap/gplus"/>
|
||||||
|
|
||||||
<TextView
|
|
||||||
android:id="@+id/about_version"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_above="@+id/about_copyright"
|
|
||||||
android:gravity="center_horizontal"
|
|
||||||
android:text="v 1.0"/>
|
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/about_copyright"
|
android:id="@+id/about_copyright"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="match_parent"
|
||||||
android:layout_alignParentBottom="true"
|
android:layout_alignParentBottom="true"
|
||||||
android:gravity="center_horizontal"
|
android:layout_below="@+id/about_gplus"
|
||||||
android:text="Copyright © Simple Mobile Tools 2016"/>
|
android:gravity="center_horizontal|bottom"
|
||||||
|
android:paddingTop="@dimen/activity_margin"
|
||||||
</RelativeLayout>
|
android:text="v1.0\nCopyright © Simple Mobile Tools 2016"/>
|
||||||
|
</RelativeLayout>
|
||||||
|
</ScrollView>
|
||||||
|
@ -33,8 +33,7 @@
|
|||||||
<string name="third_party_licences_underlined"><u>Third party licences</u></string>
|
<string name="third_party_licences_underlined"><u>Third party licences</u></string>
|
||||||
<string name="rate_us_underlined"><u>Rate us in the Play Store</u></string>
|
<string name="rate_us_underlined"><u>Rate us in the Play Store</u></string>
|
||||||
<string name="follow_us">Follow us:</string>
|
<string name="follow_us">Follow us:</string>
|
||||||
<string name="version">v %1$s</string>
|
<string name="copyright">v %1$s\nCopyright © Simple Mobile Tools %2$d</string>
|
||||||
<string name="copyright">Copyright © Simple Mobile Tools %1$d</string>
|
|
||||||
|
|
||||||
<!--License-->
|
<!--License-->
|
||||||
<string name="notice">This app uses the following third party libraries to make my life easier. Thank you.</string>
|
<string name="notice">This app uses the following third party libraries to make my life easier. Thank you.</string>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user