2018-03-08 14:50:46 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-10-09 18:24:02 +00:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-03-08 14:50:46 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/info_text_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_above="@+id/inputs_panel"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:scrollbars="vertical"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
|
2020-10-09 18:24:02 +00:00
|
|
|
tools:text="@string/import_soundcloud_instructions" />
|
2018-03-08 14:50:46 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/inputs_panel"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="16dp">
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/input_text"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:inputType="text"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:hint="@string/import_soundcloud_instructions_hint"
|
2020-10-09 18:24:02 +00:00
|
|
|
tools:visibility="visible" />
|
2018-03-08 14:50:46 +00:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/input_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
2020-10-09 18:24:02 +00:00
|
|
|
tools:text="@string/import_title" />
|
2018-03-08 14:50:46 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="4dp"
|
|
|
|
android:layout_alignParentTop="true"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:background="?attr/toolbar_shadow" />
|
2018-03-08 14:50:46 +00:00
|
|
|
|
2020-10-09 18:24:02 +00:00
|
|
|
</RelativeLayout>
|