Skip to content

Commit

Permalink
fix: hide LiquidKeyboard first initially
Browse files Browse the repository at this point in the history
  • Loading branch information
goofyz committed Jan 17, 2024
1 parent 045ee5a commit 1076de0
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions app/src/main/res/layout/symbol_input_layout.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,17 @@
android:id="@+id/symbol_input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
android:orientation="vertical"
android:visibility="gone"
>

<include
android:id="@+id/tab_view"
layout="@layout/tab_bar"
app:layout_constraintBottom_toTopOf="@id/liquid_keyboard_view"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
app:layout_constraintStart_toStartOf="parent"
/>

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/liquid_keyboard_view"
Expand All @@ -21,6 +24,7 @@
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tab_view" />
app:layout_constraintTop_toBottomOf="@id/tab_view"
/>

</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

0 comments on commit 1076de0

Please sign in to comment.