mirror of
https://github.com/jrpie/Launcher.git
synced 2025-02-24 15:01:32 +01:00
49 lines
1.9 KiB
XML
49 lines
1.9 KiB
XML
![]() |
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
android:id="@+id/settings_actions_container"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:paddingLeft="32sp"
|
||
|
android:paddingTop="16sp"
|
||
|
android:paddingRight="32sp">
|
||
|
|
||
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
android:id="@+id/settings_actions_rview"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="0dp"
|
||
|
android:layout_marginBottom="16dp"
|
||
|
app:layout_constraintBottom_toTopOf="@+id/settings_actions_buttons"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent">
|
||
|
|
||
|
</androidx.recyclerview.widget.RecyclerView>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/settings_actions_buttons"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginBottom="32dp"
|
||
|
android:orientation="vertical"
|
||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toStartOf="parent">
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/settings_actions_button_view_apps"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/settings_apps"
|
||
|
android:textAllCaps="false" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/settings_actions_button_install_apps"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/settings_install"
|
||
|
android:textAllCaps="false" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|