android Q 系统设置首页无法通过按键(RecyclerView)获取焦点的问题

image.png

1.首先通过layout inspector 获取页面布局情况;
定位到对应的Fragment 和activity

android\packages\apps\Settings\src\com\android\settings\homepage\TopLevelSettings.java
android\packages\apps\Settings\src\com\android\settings\homepage\SettingsHomepageActivity.java

初步推断可能是对应的item没有配置setFocusable(true)导致的;
但是Preference解析里面没有配置Focusable的属性(TopLevelSettings <--- DashboardFragment <---------SettingsPreferenceFragment)

import androidx.preference.Preference;
import androidx.preference.PreferenceGroup;
import androidx.preference.PreferenceScreen;


import android.view.View;
import android.graphics.Color;
import androidx.recyclerview.widget.RecyclerView;
import android.util.Log;


=======================================================================
android\packages\apps\Settings\src\com\android\settings\SettingsPreferenceFragment.java
=======================================================================
    RecyclerView mRecyclerView1;
    protected void onDataSetChanged() {
        highlightPreferenceIfNeeded();
        updateEmptyView();

        Log.e(TAG,"=============onDataSetChanged=============="+(mRecyclerView1==null));
        if (mRecyclerView1 == null){
            mRecyclerView1= getActivity().findViewById(R.id.recycler_view);
            Log.e(TAG,"=============findViewById=============="+(mRecyclerView1==null));
        }
            if (mRecyclerView1 !=null){
                Log.e(TAG,"mRecyclerView getChildCount="+mRecyclerView1.getChildCount());
                mRecyclerView1.setFocusable(false);
                mRecyclerView1.setFocusableInTouchMode(false);
                mRecyclerView1.setDescendantFocusability(ViewGroup.FOCUS_AFTER_DESCENDANTS);
                for (int i=0;i<mRecyclerView1.getChildCount();i++){
                    View view= mRecyclerView1.getChildAt(i);
                    view.setFocusable(true);
                    view.setFocusableInTouchMode(true);
                    //view.setBackgroundColor(Color.GREEN);
                    // if (i==0) {
                    //     view.requestFocus();
                    //     view.setBackgroundColor(Color.GREEN);
                    // }
                }
            }
    }

测试无效,初步排除是因为item没有配置焦点属性所致;
再看android\packages\apps\Settings\res\layout\settings_homepage_container.xml 布局

<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2018 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->

<androidx.coordinatorlayout.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/settings_homepage_container"
    android:fitsSystemWindows="true"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <androidx.core.widget.NestedScrollView
        android:id="@+id/main_content_scrollable_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="com.android.settings.widget.FloatingAppBarScrollingViewBehavior">

        <LinearLayout
            android:id="@+id/homepage_container"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:descendantFocusability="blocksDescendants">

            <FrameLayout
                android:id="@+id/contextual_cards_content"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginStart="@dimen/contextual_card_side_margin"
                android:layout_marginEnd="@dimen/contextual_card_side_margin"/>

            <FrameLayout
                android:id="@+id/main_content"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:animateLayoutChanges="true"
                android:background="?android:attr/windowBackground"/>

        </LinearLayout>
    </androidx.core.widget.NestedScrollView>

    <com.google.android.material.appbar.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <include layout="@layout/search_bar"/>
    </com.google.android.material.appbar.AppBarLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>

那么基本可以确定是因为 android:descendantFocusability="blocksDescendants"属性导致的了

该属性是当一个为view获取焦点时,定义viewGroup和其子控件两者之间的关系。
属性的值有三种:
beforeDescendants:viewgroup会优先其子类控件而获取到焦点
afterDescendants:viewgroup只有当其子类控件不需要获取焦点时才获取焦点
blocksDescendants:viewgroup会覆盖子类控件而直接获得焦点

改为afterDescendants 重新打包发现确实因为该属性导致的

Toolbar按键无法获取焦点和触发点击事件

Index: android/packages/apps/Settings/src/com/android/settings/homepage/SettingsHomepageActivity.java
===================================================================
@@ -36,6 +36,8 @@
 import com.android.settings.core.HideNonSystemOverlayMixin;
 import com.android.settings.homepage.contextualcards.ContextualCardsFragment;
 import com.android.settings.overlay.FeatureFactory;
+import android.view.KeyEvent;
+import android.graphics.Color;
 
 public class SettingsHomepageActivity extends FragmentActivity {
 
@@ -91,4 +93,25 @@
         final int paddingTop = searchBarHeight + searchBarMargin * 2;
         view.setPadding(0 /* left */, paddingTop, 0 /* right */, 0 /* bottom */);
     }
+      @Override
+    public boolean onKeyDown(int keyCode, KeyEvent event) {
+        View view=getCurrentFocus();
+        if (view !=null){
+            //view.setBackgroundColor(Color.GREEN);
+            //android.util.Log.e("TAG","getId="+view.getId());
+            //android.util.Log.e("TAG","search_bar getId="+R.id.search_bar);
+            //android.util.Log.e("TAG","keyCode ="+keyCode);
+            if (view.getId() == R.id.search_action_bar || view.getId() == R.id.search_bar) {
+                if (keyCode == KeyEvent.KEYCODE_DPAD_DOWN) {
+                    findViewById(R.id.homepage_container).requestFocus();
+                }else if ( keyCode == KeyEvent.KEYCODE_ENTER) {
+                    Toolbar toolbar = findViewById(R.id.search_action_bar);
+                    toolbar.performClick();
+                }else if ( keyCode == KeyEvent.KEYCODE_BACK) {
+                    finish();
+                }
+                return false;
+            }
+
+        }
+        return super.onKeyDown(keyCode, event);
+    }
 }
\ No newline at end of file
Index: android/packages/apps/Settings/res/layout/settings_homepage_container.xml
===================================================================
@@ -34,7 +34,7 @@
             android:layout_width="match_parent"
             android:layout_height="wrap_content"
             android:orientation="vertical"
-            android:descendantFocusability="blocksDescendants">
+            android:descendantFocusability="afterDescendants">
 
             <FrameLayout
                 android:id="@+id/contextual_cards_content"
Index: android/packages/apps/Settings/res/layout/search_bar.xml
===================================================================
@@ -22,7 +22,10 @@
     style="@style/SearchBarStyle"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
-    app:layout_scrollFlags="scroll|enterAlways">
+    app:layout_scrollFlags="scroll|enterAlways"
+   android:touchscreenBlocksFocus="false"
+            android:focusable="true"
+            android:focusableInTouchMode="true">
     <Toolbar
         android:id="@+id/search_action_bar"
         android:layout_width="match_parent"
@@ -30,7 +33,10 @@
         android:layout_marginStart="-2dp"
         android:background="@drawable/search_bar_selected_background"
         android:contentInsetStartWithNavigation="@dimen/search_bar_content_inset"
-        android:navigationIcon="@drawable/ic_homepage_search">
+        android:navigationIcon="@drawable/ic_homepage_search"
+       android:touchscreenBlocksFocus="false"
+            android:focusable="true"
+            android:focusableInTouchMode="true">
         <TextView
             android:id="@+id/search_action_bar_title"
             style="@style/TextAppearance.SearchBar"

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 210,914评论 6 490
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 89,935评论 2 383
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 156,531评论 0 345
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,309评论 1 282
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,381评论 5 384
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,730评论 1 289
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,882评论 3 404
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,643评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,095评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,448评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,566评论 1 339
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,253评论 4 328
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,829评论 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,715评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,945评论 1 264
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,248评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,440评论 2 348

推荐阅读更多精彩内容