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"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
2019-02-12 21:58:05 +00:00
|
|
|
android:paddingStart="15dp"
|
2019-02-03 09:59:04 +00:00
|
|
|
android:paddingTop="5dp"
|
2019-02-12 21:58:05 +00:00
|
|
|
android:paddingEnd="15dp"
|
2019-02-03 09:59:04 +00:00
|
|
|
android:paddingBottom="5dp">
|
2017-12-03 07:43:07 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="5dp"
|
|
|
|
android:labelFor="@id/custom_url"
|
|
|
|
android:text="@string/settings_update_custom_msg"
|
2019-02-03 09:59:04 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:textColor="?android:textColorPrimary" />
|
2017-12-03 07:43:07 +00:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/custom_url"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textUri" />
|
|
|
|
</LinearLayout>
|