2017-12-03 07:43:07 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-05-23 16:11:23 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-12-03 07:43:07 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
2019-05-23 16:11:23 +00:00
|
|
|
android:padding="@dimen/margin_generic">
|
2017-12-03 07:43:07 +00:00
|
|
|
|
2019-05-23 16:11:23 +00:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
2019-07-17 15:28:28 +00:00
|
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"
|
2017-12-03 07:43:07 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-05-23 16:11:23 +00:00
|
|
|
android:hint="@string/settings_update_custom_msg"
|
|
|
|
app:hintEnabled="true">
|
|
|
|
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
|
|
android:id="@+id/custom_url"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textUri" />
|
|
|
|
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
2017-12-03 07:43:07 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|