VerticalGridView的焦点处理

Posted

技术标签:

【中文标题】VerticalGridView的焦点处理【英文标题】:Focus Handling of VerticalGridView 【发布时间】:2019-09-13 17:57:49 【问题描述】:

这里 VerticalGridView(VG) 将填充一些数据。 VG 收到焦点上/下按 D-PAD 键,它工作正常。但问题是当焦点位于网格中的第零项并且用户按下 D-PAD 键时,焦点必须设置为 VG 之外的视图之一,即 ll_exit(xml 文件中提到的 id),但当前焦点不是去上述观点。请告诉我如何解决这个问题。

我尝试设置 android:nextFocusUp="@id/ll_exit" 但它没有移动并尝试在活动级别实现 onKeyUp 方法,如下所示

@Override
    public boolean onKeyUp(int keyCode, KeyEvent event) 
        switch (keyCode) 
            case KeyEvent.KEYCODE_DPAD_UP:
                Log.d(TAG, "onKeyUp: " + event.getAction());
                GenresFragment fragment = (GenresFragment) getSupportFragmentManager().findFragmentById(R.id.fragment_genre);
                int pos = fragment.getVerticalGridView().getSelectedPosition();
                if (pos == 0) 
                    fragment.getLlExit().requestFocus();
                
                return true;
            default:
                return super.onKeyUp(keyCode, event);
        
    

但这里的问题是,当我在 VG 中的第一项并突然按下向上键时,它会转到我需要集中注意力的视图。即 xml 文件中的 ll_exit 视图

<b>main_layout.xml</b>

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/ll_root"
        android:layout_
        android:layout_
        android:orientation="vertical">

        <LinearLayout
            android:id="@+id/ll_toolbar"
            android:layout_
            android:layout_
            android:orientation="horizontal">

            <TextView
                android:id="@+id/tv_all_channels"
                android:layout_
                android:layout_/>

            <LinearLayout
                android:id="@+id/ll_genres"
                android:layout_
                android:layout_/>

            <LinearLayout
                android:id="@+id/ll_exit"
                android:layout_
                android:layout_/>
        </LinearLayout>

        <android.support.v17.leanback.widget.VerticalGridView
            android:id="@+id/vg_genres"
            android:layout_
            android:layout_
            android:layout_below="@id/ll_toolbar"
            android:nextFocusUp="@id/ll_exit" />
    </RelativeLayout>

【问题讨论】:

我也有同样的问题。朋友,你解决了吗?我用RecyclerView的时候,滚动的时候焦点不稳,但是会移动到其他元素上,但是用VerticalGridView的时候感觉好像挡住了向外的任何移动。 是的@kirkadev 我可以通过定义一个自定义类来检查下一个焦点或上一个焦点 也没有找到直接的解决方案。我得到了焦点项的位置,如果它在第一行,那么我为所需的视图调用 requestFocus() 方法。 【参考方案1】:

尝试将以下 XML 属性添加到 VG

app:focusOutEnd="true"
app:focusOutFront="true"

它对我有用!

【讨论】:

【参考方案2】:

尝试将以下 XML 属性添加到 LinearLayout 视图 ll_exit

android:focusable="true"
android:focusableInTouchMode="true"

【讨论】:

我尝试在 xml 文件中添加这些属性,但它没有用。问题是焦点从外部视图转到回收器视图适配器,但是如果我想在按键按下时将焦点返回到外部视图,则不会发生 将你在onKeyUp方法中发布的代码放入onKeyDown方法中,而不是onKeyUp。这可能行得通。【参考方案3】:

可能的方法: 尝试将 LinearLayout ll_toolbar 设置为

android:focusable="true"
android:focusableInTouchMode="true"
android:descendantFocusability="afterDescendants"

或者试试:

View nextFocused = FocusFinder.getInstance().findNextFocus(this, currentFocused, View.FOCUS_UP);

if (nextFocused != null) 
    nextFocused.requestFocus();

如果没有解决方案,只需像这样扩展 VerticalGridView

public class SampleVerticalGridView extends VerticalGridView implements FocusInterceptor


    private static final String TAG = "SampleVerticalGridView";
    private View focusUp;
    private View focusDown;

    // constructors and stuff
    ...

    public void setNextFocusViews(View focusUp, View focusdown) 
        this.focusUp = focusUp;
        this.focusdown = focusdown;
    

    @Override
    public View focusSearch(View focused, int direction) 
        if (direction == View.FOCUS_UP && focusUp != null) 
            return focusUp;
         else if (direction == View.FOCUS_DOWN && focusDown != null) 
            return focusDown;
        
        return super.focusSearch(focused, direction);
    

    ...

【讨论】:

以上是关于VerticalGridView的焦点处理的主要内容,如果未能解决你的问题,请参考以下文章

Leanback VerticalGridView 高度:wrap_content

Android TV 开发-->Leanback 中的 VerticalGridView

Vert.x Web之Router

Vert.x-Web的讲解和使用

Vert.x-Web的讲解和使用

深入浅出Vert.x架构