Skip to content

Commit 61bce4a

Browse files
committed
Fix known keyboard navigation bugs
1 parent fa6c07c commit 61bce4a

2 files changed

Lines changed: 13 additions & 10 deletions

File tree

legacy/ui/legacy/src/main/res/layout/message_compose_recipients.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,7 @@
252252
android:background="@android:color/transparent"
253253
android:paddingTop="10dp"
254254
android:paddingBottom="10dp"
255+
android:focusable="true"
255256
android:dropDownWidth="wrap_content"
256257
style="@style/RecipientEditText"
257258
/>

legacy/ui/legacy/src/main/res/layout/message_list_fragment.xml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,17 @@
88
android:layout_height="match_parent"
99
tools:context=".messagelist.MessageListFragment"
1010
>
11+
<com.google.android.material.floatingactionbutton.FloatingActionButton
12+
android:id="@+id/floating_action_button"
13+
android:layout_width="wrap_content"
14+
android:layout_height="wrap_content"
15+
android:layout_gravity="bottom|end"
16+
android:layout_margin="@dimen/floatingActionButtonMargin"
17+
android:contentDescription="@string/compose_action"
18+
app:layout_behavior="com.fsck.k9.ui.fab.HideFabOnScrollBehavior"
19+
app:srcCompat="@drawable/ic_edit"
20+
android:focusable="true"
21+
/>
1122

1223
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
1324
android:id="@+id/swiperefresh"
@@ -29,15 +40,6 @@
2940

3041
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
3142

32-
<com.google.android.material.floatingactionbutton.FloatingActionButton
33-
android:id="@+id/floating_action_button"
34-
android:layout_width="wrap_content"
35-
android:layout_height="wrap_content"
36-
android:layout_gravity="bottom|end"
37-
android:layout_margin="@dimen/floatingActionButtonMargin"
38-
android:contentDescription="@string/compose_action"
39-
app:layout_behavior="com.fsck.k9.ui.fab.HideFabOnScrollBehavior"
40-
app:srcCompat="@drawable/ic_edit"
41-
/>
43+
4244

4345
</androidx.coordinatorlayout.widget.CoordinatorLayout>

0 commit comments

Comments
 (0)