mirror of
https://github.com/YTVanced/VancedManager
synced 2024-11-27 05:23:00 +00:00
bug fixes
This commit is contained in:
parent
2b7b75cd95
commit
4e591062bb
4 changed files with 9 additions and 8 deletions
|
@ -13,7 +13,7 @@ android {
|
|||
minSdkVersion 21
|
||||
targetSdkVersion 29
|
||||
versionCode 12
|
||||
versionName "1.2.0 (Weed)"
|
||||
versionName "1.2.0 (Niko)"
|
||||
|
||||
vectorDrawables.useSupportLibrary = true
|
||||
}
|
||||
|
|
|
@ -7,6 +7,7 @@ import android.view.LayoutInflater
|
|||
import android.view.View
|
||||
import android.view.ViewGroup
|
||||
import android.widget.EditText
|
||||
import android.widget.TextView
|
||||
import androidx.fragment.app.DialogFragment
|
||||
import androidx.preference.PreferenceManager
|
||||
import com.google.android.material.button.MaterialButton
|
||||
|
@ -29,10 +30,10 @@ class URLChangeFragment : DialogFragment() {
|
|||
super.onViewCreated(view, savedInstanceState)
|
||||
val urlField = view.findViewById<EditText>(R.id.url_input)
|
||||
val prefs = PreferenceManager.getDefaultSharedPreferences(activity)
|
||||
urlField.hint = prefs.getString("install_url", baseUrl)
|
||||
urlField.setText(prefs.getString("install_url", baseUrl), TextView.BufferType.EDITABLE)
|
||||
view.findViewById<MaterialButton>(R.id.url_save).setOnClickListener {
|
||||
val finalUrl =
|
||||
if (!urlField.text.startsWith("https://"))
|
||||
if (!urlField.text.startsWith("https://") || !urlField.text.startsWith("http://"))
|
||||
"https://${urlField.text}".removeSuffix("/")
|
||||
else
|
||||
urlField.text.removeSuffix("/").toString()
|
||||
|
|
|
@ -6,14 +6,14 @@
|
|||
android:duration="@android:integer/config_shortAnimTime"
|
||||
android:propertyName="scaleX"
|
||||
android:valueFrom="1"
|
||||
android:valueTo="1.1"
|
||||
android:valueTo="0.9"
|
||||
android:valueType="floatType"/>
|
||||
|
||||
<objectAnimator
|
||||
android:duration="@android:integer/config_shortAnimTime"
|
||||
android:propertyName="scaleY"
|
||||
android:valueFrom="1"
|
||||
android:valueTo="1.1"
|
||||
android:valueTo="0.9"
|
||||
android:valueType="floatType"/>
|
||||
|
||||
<objectAnimator
|
||||
|
|
|
@ -6,14 +6,14 @@
|
|||
android:duration="@android:integer/config_shortAnimTime"
|
||||
android:propertyName="scaleX"
|
||||
android:valueFrom="1"
|
||||
android:valueTo="1.1"
|
||||
android:valueTo="0.9"
|
||||
android:valueType="floatType"/>
|
||||
|
||||
<objectAnimator
|
||||
android:duration="@android:integer/config_shortAnimTime"
|
||||
android:propertyName="scaleX"
|
||||
android:propertyName="scaleY"
|
||||
android:valueFrom="1"
|
||||
android:valueTo="1.1"
|
||||
android:valueTo="0.9"
|
||||
android:valueType="floatType"/>
|
||||
|
||||
<objectAnimator
|
||||
|
|
Loading…
Reference in a new issue