Removed the attribution label

This commit is contained in:
Morgan Pretty 2024-07-18 09:11:37 +10:00
parent d6ea2221ec
commit afcb8c1150
3 changed files with 0 additions and 18 deletions

View File

@ -111,14 +111,12 @@ class PathActivity : PassphraseRequiredActionBarActivity() {
for (row in rows) { for (row in rows) {
binding.pathRowsContainer.addView(row) binding.pathRowsContainer.addView(row)
} }
binding.pathAttribution.visibility = View.VISIBLE
if (isAnimated) { if (isAnimated) {
binding.spinner.fadeOut() binding.spinner.fadeOut()
} else { } else {
binding.spinner.alpha = 0.0f binding.spinner.alpha = 0.0f
} }
} else { } else {
binding.pathAttribution.visibility = View.INVISIBLE
if (isAnimated) { if (isAnimated) {
binding.spinner.fadeIn() binding.spinner.fadeIn()
} else { } else {

View File

@ -41,21 +41,6 @@
android:layout_centerInParent="true" android:layout_centerInParent="true"
app:SpinKit_Color="?android:textColorPrimary" /> app:SpinKit_Color="?android:textColorPrimary" />
<TextView
android:id="@+id/pathAttribution"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/pathRowsContainer"
android:layout_marginLeft="@dimen/large_spacing"
android:layout_marginTop="@dimen/small_spacing"
android:layout_marginRight="@dimen/large_spacing"
android:textSize="@dimen/very_small_font_size"
android:textColor="?android:textColorPrimary"
android:alpha="0.6"
android:textAlignment="center"
android:text="@string/activity_path_attribution"
android:visibility="invisible" />
</RelativeLayout> </RelativeLayout>
<Button <Button

View File

@ -1076,6 +1076,5 @@
<string name="unread_marker">Unread Messages</string> <string name="unread_marker">Unread Messages</string>
<string name="auto_deletes_in">Auto-deletes in %1$s</string> <string name="auto_deletes_in">Auto-deletes in %1$s</string>
<string name="activity_path_attribution">Path location data provided by MaxMind</string>
</resources> </resources>