mirror of https://github.com/M66B/FairEmail.git
Simplified about
This commit is contained in:
parent
2e8e07d97a
commit
7ead4e2d8c
|
@ -58,7 +58,6 @@ public class FragmentAbout extends FragmentBase {
|
||||||
TextView tvVersion = view.findViewById(R.id.tvVersion);
|
TextView tvVersion = view.findViewById(R.id.tvVersion);
|
||||||
TextView tvRelease = view.findViewById(R.id.tvRelease);
|
TextView tvRelease = view.findViewById(R.id.tvRelease);
|
||||||
TextView tvUpdated = view.findViewById(R.id.tvUpdated);
|
TextView tvUpdated = view.findViewById(R.id.tvUpdated);
|
||||||
ImageButton ibUpdate = view.findViewById(R.id.ibUpdate);
|
|
||||||
TextView tvGplV3 = view.findViewById(R.id.tvGplV3);
|
TextView tvGplV3 = view.findViewById(R.id.tvGplV3);
|
||||||
LinearLayout llContributors = view.findViewById(R.id.llContributors);
|
LinearLayout llContributors = view.findViewById(R.id.llContributors);
|
||||||
|
|
||||||
|
@ -77,19 +76,6 @@ public class FragmentAbout extends FragmentBase {
|
||||||
DateFormat DF = Helper.getDateTimeInstance(context, DateFormat.SHORT, DateFormat.SHORT);
|
DateFormat DF = Helper.getDateTimeInstance(context, DateFormat.SHORT, DateFormat.SHORT);
|
||||||
tvUpdated.setText(getString(R.string.app_updated, last == 0 ? "-" : DF.format(last)));
|
tvUpdated.setText(getString(R.string.app_updated, last == 0 ? "-" : DF.format(last)));
|
||||||
|
|
||||||
ibUpdate.setVisibility(
|
|
||||||
Helper.hasValidFingerprint(context) || BuildConfig.DEBUG
|
|
||||||
? View.VISIBLE : View.GONE);
|
|
||||||
ibUpdate.setOnClickListener(new View.OnClickListener() {
|
|
||||||
@Override
|
|
||||||
public void onClick(View v) {
|
|
||||||
if (BuildConfig.PLAY_STORE_RELEASE)
|
|
||||||
Helper.view(v.getContext(), Helper.getIntentRate(v.getContext()));
|
|
||||||
else
|
|
||||||
onMenuChangelog();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
tvGplV3.setPaintFlags(tvGplV3.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
|
tvGplV3.setPaintFlags(tvGplV3.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
|
||||||
tvGplV3.setOnClickListener(new View.OnClickListener() {
|
tvGplV3.setOnClickListener(new View.OnClickListener() {
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -25,12 +25,13 @@
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="6dp"
|
android:layout_marginStart="6dp"
|
||||||
|
android:layout_marginEnd="12dp"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:singleLine="true"
|
android:singleLine="true"
|
||||||
android:text="Dinosaur"
|
android:text="Dinosaur"
|
||||||
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
||||||
android:textStyle="italic"
|
android:textStyle="italic"
|
||||||
app:layout_constraintEnd_toStartOf="@+id/ibUpdate"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toEndOf="@id/tvVersion"
|
app:layout_constraintStart_toEndOf="@id/tvVersion"
|
||||||
app:layout_constraintTop_toTopOf="@id/tvVersion" />
|
app:layout_constraintTop_toTopOf="@id/tvVersion" />
|
||||||
|
|
||||||
|
@ -38,10 +39,10 @@
|
||||||
android:id="@+id/tvUpdated"
|
android:id="@+id/tvUpdated"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="12dp"
|
android:layout_marginHorizontal="12dp"
|
||||||
android:text="@string/app_updated"
|
android:text="@string/app_updated"
|
||||||
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
||||||
app:layout_constraintEnd_toStartOf="@+id/ibUpdate"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/tvRelease" />
|
app:layout_constraintTop_toBottomOf="@id/tvRelease" />
|
||||||
|
|
||||||
|
@ -49,28 +50,14 @@
|
||||||
android:id="@+id/tvCopyright"
|
android:id="@+id/tvCopyright"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="12dp"
|
android:layout_marginHorizontal="12dp"
|
||||||
android:layout_marginTop="12dp"
|
android:layout_marginTop="12dp"
|
||||||
android:text="@string/app_copyright"
|
android:text="@string/app_copyright"
|
||||||
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
android:textAppearance="@style/TextAppearance.AppCompat.Small"
|
||||||
app:layout_constraintEnd_toStartOf="@+id/ibUpdate"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/tvUpdated" />
|
app:layout_constraintTop_toBottomOf="@id/tvUpdated" />
|
||||||
|
|
||||||
<ImageButton
|
|
||||||
android:id="@+id/ibUpdate"
|
|
||||||
android:layout_width="36dp"
|
|
||||||
android:layout_height="36dp"
|
|
||||||
android:layout_marginEnd="12dp"
|
|
||||||
android:background="?android:attr/selectableItemBackgroundBorderless"
|
|
||||||
android:contentDescription="@string/title_more"
|
|
||||||
android:padding="6dp"
|
|
||||||
android:scaleType="fitCenter"
|
|
||||||
app:layout_constraintBottom_toBottomOf="@+id/tvUpdated"
|
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
|
||||||
app:layout_constraintTop_toTopOf="@id/tvVersion"
|
|
||||||
app:srcCompat="@drawable/twotone_cached_24" />
|
|
||||||
|
|
||||||
<eu.faircode.email.ScrollViewEx
|
<eu.faircode.email.ScrollViewEx
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="0dp"
|
android:layout_height="0dp"
|
||||||
|
|
Loading…
Reference in New Issue