Small intercept tweaks

This commit is contained in:
Jobobby04 2020-05-30 14:11:57 -04:00
parent 7f55f5808b
commit ae812e9c40
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ class InterceptActivity : BaseActivity<EhActivityInterceptBinding>() {
private fun processLink() {
if (Intent.ACTION_VIEW == intent.action) {
binding.interceptProgress.visible()
binding.interceptStatus.text = "Loading gallery..."
binding.interceptStatus.setText(R.string.loading_gallery)
loadGallery(intent.dataString!!)
}
}

View File

@ -37,7 +37,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:text="Loading gallery..."
android:text="@string/loading_gallery"
android:textAppearance="@style/TextAppearance.Medium.Title" />
<ProgressBar