Minor corrections

This commit is contained in:
Julian Raufelder 2022-05-25 09:44:37 +02:00
parent a09584243e
commit 646e6418ad
No known key found for this signature in database
GPG Key ID: 17EE71F6634E381D
2 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@ import kotlinx.android.synthetic.main.activity_cryptomator_variants.tvFdroidCust
import kotlinx.android.synthetic.main.activity_cryptomator_variants.tvFdroidCustomUnsupported import kotlinx.android.synthetic.main.activity_cryptomator_variants.tvFdroidCustomUnsupported
import kotlinx.android.synthetic.main.activity_cryptomator_variants.tvFdroidMainSupported import kotlinx.android.synthetic.main.activity_cryptomator_variants.tvFdroidMainSupported
import kotlinx.android.synthetic.main.activity_cryptomator_variants.tvFdroidMainUnsupported import kotlinx.android.synthetic.main.activity_cryptomator_variants.tvFdroidMainUnsupported
import kotlinx.android.synthetic.main.activity_cryptomator_variants.tvWebsiteAllowed import kotlinx.android.synthetic.main.activity_cryptomator_variants.tvWebsiteSupported
import kotlinx.android.synthetic.main.toolbar_layout.toolbar import kotlinx.android.synthetic.main.toolbar_layout.toolbar
@Activity(layout = R.layout.activity_cryptomator_variants) @Activity(layout = R.layout.activity_cryptomator_variants)
@ -32,7 +32,7 @@ class CryptomatorVariantsActivity : BaseActivity(), CryptomatorVariantsView {
tvFdroidCustomSupported.text = "Dropbox, OneDrive, pCloud, WebDAV, S3, Local Storage" tvFdroidCustomSupported.text = "Dropbox, OneDrive, pCloud, WebDAV, S3, Local Storage"
tvFdroidCustomUnsupported.text = "Google Drive" tvFdroidCustomUnsupported.text = "Google Drive"
tvWebsiteAllowed.text = "Dropbox, Google Drive, OneDrive, pCloud, WebDAV, S3, Local Storage" tvWebsiteSupported.text = "Dropbox, Google Drive, OneDrive, pCloud, WebDAV, S3, Local Storage"
btnInstallMainFDroidVariant.setOnClickListener { btnInstallMainFDroidVariant.setOnClickListener {
presenter.onInstallMainFDroidVariantClicked() presenter.onInstallMainFDroidVariantClicked()

View File

@ -58,7 +58,7 @@
android:src="@drawable/ic_done_gray" /> android:src="@drawable/ic_done_gray" />
<TextView <TextView
android:id="@+id/tvWebsiteAllowed" android:id="@+id/tvWebsiteSupported"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_centerVertical="true" android:layout_centerVertical="true"
@ -159,7 +159,7 @@
<TextView <TextView
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="@string/screen_cryptomator_variants_website_description" /> android:text="@string/screen_cryptomator_variants_fdroid_main_description" />
</LinearLayout> </LinearLayout>