Skip to content

Commit 84880d4

Browse files
committed
Merge branch 'dev'
2 parents 10a3e6a + 7aef853 commit 84880d4

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ android {
1212
applicationId = "app.opass.ccip"
1313
minSdk = 24
1414
targetSdk = 36
15-
versionCode = 58
16-
versionName = "3.8.0"
15+
versionCode = 59
16+
versionName = "3.8.1"
1717

1818
manifestPlaceholders["manifestApplicationId"] = "$applicationId"
1919
}

app/src/main/res/layout/activity_about.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
<com.google.android.material.appbar.AppBarLayout
1010
android:id="@+id/appbar"
1111
android:layout_width="match_parent"
12+
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$Behavior"
1213
android:layout_height="wrap_content"
14+
android:fitsSystemWindows="true"
1315
android:theme="@style/ThemeOverlay.MaterialComponents.Dark.ActionBar">
1416

1517
<androidx.appcompat.widget.Toolbar
@@ -27,6 +29,7 @@
2729
android:layout_height="match_parent"
2830
android:layout_marginTop="?attr/actionBarSize"
2931
android:orientation="vertical"
32+
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"
3033
android:gravity="center_horizontal">
3134

3235
<ImageView

app/src/main/res/layout/activity_session_detail.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
android:layout_height="@dimen/app_bar_height"
1313
android:fitsSystemWindows="true"
1414
android:theme="@style/AppTheme.AppBarOverlay"
15-
app:layout_behavior=".ui.sessiondetail.ScrollingControlAppBarLayoutBehavior">
15+
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$Behavior">
1616

1717
<com.google.android.material.appbar.CollapsingToolbarLayout
1818
android:id="@+id/toolbar_layout"

app/src/main/res/layout/content_session_detail.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
<LinearLayout
1212
android:layout_width="match_parent"
1313
android:layout_height="match_parent"
14-
android:orientation="vertical">
14+
android:orientation="vertical"
15+
android:paddingBottom="@dimen/padding_safe_area">
1516

1617
<androidx.cardview.widget.CardView
1718
android:layout_width="match_parent"

app/src/main/res/values/dimens.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@
77
<dimen name="fab_margin">16dp</dimen>
88
<dimen name="text_margin">16dp</dimen>
99
<dimen name="icon_size">24dp</dimen>
10+
<dimen name="padding_safe_area">100dp</dimen>
1011
</resources>

0 commit comments

Comments
 (0)