mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-06-22 00:50:55 +00:00
Display some help text in the importer selection dialog
This commit is contained in:
parent
b21b6dc750
commit
69196ddbcc
6 changed files with 148 additions and 70 deletions
7
app/src/main/res/layout/card_importer.xml
Normal file
7
app/src/main/res/layout/card_importer.xml
Normal 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>
|
24
app/src/main/res/layout/dialog_importers.xml
Normal file
24
app/src/main/res/layout/dialog_importers.xml
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue