Display some help text in the importer selection dialog

This commit is contained in:
Alexander Bakker 2020-10-25 13:35:38 +01:00
parent b21b6dc750
commit 69196ddbcc
6 changed files with 148 additions and 70 deletions

View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<CheckedTextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:checkMark="?android:attr/listChoiceIndicatorSingle">
</CheckedTextView>

View file

@ -0,0 +1,24 @@
<?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"
android:paddingStart="25dp"
android:paddingBottom="10dp"
android:paddingEnd="25dp"
android:paddingTop="10dp">
<ListView
android:id="@+id/list_importers"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginTop="10dp"
android:choiceMode="singleChoice"
android:divider="@null" />
<TextView
android:id="@+id/text_importer_help"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp" />
</LinearLayout>