Fix: Resolve timeline overlapping by increasing container height to 96dp and reducing card sizes to 68dp
This commit is contained in:
@@ -108,7 +108,7 @@
|
|||||||
<FrameLayout
|
<FrameLayout
|
||||||
android:id="@+id/panelSelectionContainer"
|
android:id="@+id/panelSelectionContainer"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="80dp"
|
android:layout_height="96dp"
|
||||||
android:background="#000000"
|
android:background="#000000"
|
||||||
app:layout_constraintTop_toBottomOf="@id/cameraContainer"
|
app:layout_constraintTop_toBottomOf="@id/cameraContainer"
|
||||||
app:layout_constraintBottom_toTopOf="@id/bottomControlPanel">
|
app:layout_constraintBottom_toTopOf="@id/bottomControlPanel">
|
||||||
@@ -166,7 +166,7 @@
|
|||||||
<androidx.constraintlayout.widget.ConstraintLayout
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||||||
android:id="@+id/bottomControlPanel"
|
android:id="@+id/bottomControlPanel"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="0dp"
|
android:layout_height="wrap_content"
|
||||||
android:background="#000000"
|
android:background="#000000"
|
||||||
app:layout_constraintTop_toBottomOf="@id/panelSelectionContainer"
|
app:layout_constraintTop_toBottomOf="@id/panelSelectionContainer"
|
||||||
app:layout_constraintBottom_toBottomOf="parent">
|
app:layout_constraintBottom_toBottomOf="parent">
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
|
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
android:id="@+id/cardSubFrame"
|
android:id="@+id/cardSubFrame"
|
||||||
android:layout_width="80dp"
|
android:layout_width="68dp"
|
||||||
android:layout_height="80dp"
|
android:layout_height="68dp"
|
||||||
android:layout_margin="4dp"
|
android:layout_margin="4dp"
|
||||||
app:cardCornerRadius="6dp"
|
app:cardCornerRadius="6dp"
|
||||||
app:cardElevation="1dp"
|
app:cardElevation="1dp"
|
||||||
@@ -19,8 +19,8 @@
|
|||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/imgFrameThumb"
|
android:id="@+id/imgFrameThumb"
|
||||||
android:layout_width="48dp"
|
android:layout_width="36dp"
|
||||||
android:layout_height="48dp"
|
android:layout_height="36dp"
|
||||||
android:scaleType="fitCenter"
|
android:scaleType="fitCenter"
|
||||||
android:contentDescription="Frame Thumb" />
|
android:contentDescription="Frame Thumb" />
|
||||||
|
|
||||||
|
|||||||
@@ -6,9 +6,9 @@
|
|||||||
|
|
||||||
<com.google.android.material.card.MaterialCardView
|
<com.google.android.material.card.MaterialCardView
|
||||||
android:id="@+id/cardPreset"
|
android:id="@+id/cardPreset"
|
||||||
android:layout_width="80dp"
|
android:layout_width="68dp"
|
||||||
android:layout_height="80dp"
|
android:layout_height="68dp"
|
||||||
android:layout_margin="6dp"
|
android:layout_margin="4dp"
|
||||||
app:cardCornerRadius="6dp"
|
app:cardCornerRadius="6dp"
|
||||||
app:cardElevation="1dp"
|
app:cardElevation="1dp"
|
||||||
app:strokeWidth="0dp"
|
app:strokeWidth="0dp"
|
||||||
|
|||||||
Reference in New Issue
Block a user