25 lines
1 KiB
XML
25 lines
1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/import_contacts_holder"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:paddingStart="@dimen/activity_margin"
|
|
android:paddingTop="@dimen/activity_margin"
|
|
android:paddingEnd="@dimen/activity_margin">
|
|
|
|
<org.fossify.commons.views.MyTextInputLayout
|
|
android:id="@+id/import_contacts_hint"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="@dimen/activity_margin"
|
|
android:hint="@string/target_contact_source">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/import_contacts_title"
|
|
style="@style/UnclickableEditText"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</org.fossify.commons.views.MyTextInputLayout>
|
|
</LinearLayout>
|