Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ca2de66c authored by Jon Mann's avatar Jon Mann
Browse files

Remove focusableInTouchMode

Bug: 38138366
Test: verified
Change-Id: I1f1b7638a1b0a0d2ef8e4a77c123888e8a803a7b
parent 439c9155
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/list_item_background"
    android:focusableInTouchMode="true"
    android:focusable="true"
    android:orientation="horizontal" >

    <LinearLayout
+1 −3
Original line number Diff line number Diff line
@@ -16,14 +16,12 @@

<!-- CoordinatorLayout is necessary for various components (e.g. Snackbars, and
     floating action buttons) to operate correctly. -->
<!-- focusableInTouchMode is set in order to force key events to go to the activity's global key
     callback, which is necessary for proper event routing. See BaseActivity.onKeyDown. -->
<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/coordinator_layout"
    android:focusableInTouchMode="true">
    android:focusable="true">

    <LinearLayout
        android:layout_width="match_parent"
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@
    android:orientation="vertical"
    android:background="@drawable/grid_item_background"
    android:elevation="@dimen/grid_item_elevation"
    android:focusableInTouchMode="true">
    android:focusable="true">

    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@
    android:orientation="vertical"
    android:background="@drawable/grid_item_background"
    android:elevation="@dimen/grid_item_elevation"
    android:focusableInTouchMode="true">
    android:focusable="true">

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
+0 −1
Original line number Diff line number Diff line
@@ -21,7 +21,6 @@
    android:layout_height="match_parent"
    android:background="@color/directory_background"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:clickable="true">

    <RelativeLayout
Loading