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"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="?attr/colorPrimaryDark"
|
|
|
|
tools:context=".ChooseActivity">
|
|
|
|
|
2020-05-15 17:41:48 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/heading"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Choose App"
|
|
|
|
android:textColor="#cccccc"
|
|
|
|
android:textSize="36sp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_bias="0.100000024" />
|
|
|
|
|
2020-05-14 21:31:54 +02:00
|
|
|
<ScrollView
|
2020-05-15 17:41:48 +02:00
|
|
|
android:id="@+id/scrollView3"
|
2020-05-14 21:31:54 +02:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginLeft="16dp"
|
2020-05-15 17:41:48 +02:00
|
|
|
android:layout_marginTop="86dp"
|
2020-05-14 21:31:54 +02:00
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginRight="16dp"
|
2020-05-15 17:41:48 +02:00
|
|
|
android:layout_marginBottom="128dp"
|
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-15 17:41:48 +02:00
|
|
|
app:layout_constraintTop_toTopOf="@id/heading">
|
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>
|
|
|
|
|
2020-05-15 17:41:48 +02:00
|
|
|
<Button
|
|
|
|
android:id="@+id/button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:onClick="backHome"
|
|
|
|
android:text="Back to Settings"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/scrollView3" />
|
|
|
|
|
2020-05-14 21:31:54 +02:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|