2020-05-14 21:31:54 +02:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-05-22 12:50:13 +02:00
|
|
|
xmlns:custom="http://schemas.android.com/apk/res-auto"
|
2020-05-14 21:31:54 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-05-22 18:21:30 +02:00
|
|
|
android:background="?attr/colorPrimary"
|
2020-05-14 21:31:54 +02:00
|
|
|
tools:context=".ChooseActivity">
|
|
|
|
|
2020-05-22 12:50:13 +02:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:id="@+id/app_bar"
|
|
|
|
android:layout_width="match_parent"
|
2020-05-15 17:41:48 +02:00
|
|
|
android:layout_height="wrap_content"
|
2020-05-22 12:50:13 +02:00
|
|
|
android:gravity="center"
|
2020-05-15 17:41:48 +02:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2020-05-22 12:50:13 +02:00
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
2020-05-15 17:41:48 +02:00
|
|
|
|
2020-05-22 12:50:13 +02:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/heading"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:minHeight="?actionBarSize"
|
|
|
|
android:padding="@dimen/appbar_padding"
|
|
|
|
android:text="@string/choose_title"
|
|
|
|
android:textAppearance="@style/TextAppearance.Widget.AppCompat.Toolbar.Title"
|
|
|
|
android:textSize="30sp"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
<com.finnmglas.launcher.FontAwesome
|
2020-05-22 23:32:21 +02:00
|
|
|
android:id="@+id/close_chooser"
|
2020-05-22 12:50:13 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
android:layout_marginRight="8dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:includeFontPadding="true"
|
|
|
|
android:onClick="backHome"
|
|
|
|
android:paddingLeft="16sp"
|
|
|
|
android:paddingRight="16sp"
|
|
|
|
android:text="@string/fa_close_window"
|
2020-05-22 17:25:32 +02:00
|
|
|
android:textColor="?attr/colorAccent"
|
2020-05-22 12:50:13 +02:00
|
|
|
android:textSize="22sp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
custom:type="solid" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2020-05-16 07:32:32 +02:00
|
|
|
|
2020-05-14 21:31:54 +02:00
|
|
|
<ScrollView
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginLeft="16dp"
|
2020-05-22 12:50:13 +02:00
|
|
|
android:layout_marginTop="16dp"
|
2020-05-14 21:31:54 +02:00
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginRight="16dp"
|
2020-05-22 12:50:13 +02:00
|
|
|
android:layout_marginBottom="16dp"
|
2020-05-14 21:31:54 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2020-05-22 12:50:13 +02:00
|
|
|
app:layout_constraintTop_toBottomOf="@id/app_bar">
|
2020-05-14 21:31:54 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/apps_list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" />
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|