Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/src/main/res/layout/activity_buttons.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<com.google.android.material.textview.MaterialTextView
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/activity_images.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<com.google.android.material.textview.MaterialTextView
Expand Down
5 changes: 2 additions & 3 deletions app/src/main/res/layout/activity_linear_layout.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<com.google.android.material.textview.MaterialTextView
Expand Down Expand Up @@ -96,8 +96,7 @@
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="24dp"
android:orientation="horizontal"
app:layout_constraintStart_toStartOf="parent">
android:orientation="horizontal">

<com.google.android.material.button.MaterialButton
style="@style/Widget.Material3.Button.ElevatedButton"
Expand Down
8 changes: 4 additions & 4 deletions app/src/main/res/layout/activity_permissions.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:layout_height="match_parent">

<FrameLayout
android:id="@+id/frame_layout_permissions"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</FrameLayout>

2 changes: 1 addition & 1 deletion app/src/main/res/layout/activity_permissions_tutorial.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="wrap_content">

<com.google.android.material.textview.MaterialTextView
android:id="@+id/text_view_permissions_beginning"
Expand Down
7 changes: 2 additions & 5 deletions app/src/main/res/layout/activity_progress_bar.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<com.google.android.material.textview.MaterialTextView
Expand Down Expand Up @@ -83,10 +83,7 @@
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="24dp"
android:indeterminate="true"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
android:indeterminate="true" />

<com.google.android.material.button.MaterialButton
android:id="@+id/button_download"
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/activity_startup.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="wrap_content">

<com.google.android.material.textview.MaterialTextView
android:id="@+id/text_view_welcome"
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/layout/activity_switch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<com.google.android.material.textview.MaterialTextView
Expand Down Expand Up @@ -66,7 +66,7 @@
<com.google.android.material.materialswitch.MaterialSwitch
android:id="@+id/material_switch_preference"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
android:padding="24dp"
android:text="@string/switch_me"
android:tooltipText="@string/switch_me"
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/layout/dialog_bottom_sheet_menu.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal"
android:padding="16dp">
Expand Down Expand Up @@ -95,7 +95,7 @@

<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal"
android:padding="16dp">
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/fragment_home.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:gravity="center"
android:orientation="vertical">
Expand Down