mirror of
https://github.com/jrpie/Launcher.git
synced 2025-02-24 15:01:32 +01:00
31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
![]() |
<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">
|
||
|
|
||
|
<ScrollView
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="0dp"
|
||
|
android:layout_marginStart="16dp"
|
||
|
android:layout_marginLeft="16dp"
|
||
|
android:layout_marginTop="16dp"
|
||
|
android:layout_marginEnd="16dp"
|
||
|
android:layout_marginRight="16dp"
|
||
|
android:layout_marginBottom="16dp"
|
||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/apps_list"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical" />
|
||
|
</ScrollView>
|
||
|
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|