AndroidTV开发知识总结(机顶盒端 )

前言

金三银四之际被离职,入职了一家TV开发的公司。入职一月,简单总结下TV开发需要注意的一些东西。

知识点

适配

试用了一下sw 即最小宽度适配(推荐此适配方法)
1280*720 对应的分辨率 mdpi
具体这方面分析的文章有很多 也很全面,不多哔哔。
推荐一个文章:https://blog.csdn.net/hejjunlin/article/details/52886107
屏幕方向: 横竖都一样

常用adb

adb connect ip:port
adb shell am start packet/packet.Main
adb root (获取root权限)
adb install
adb uninstall
adb shell (进linux)

布局及处理

先上几个图片


在这里插入图片描述

在这里插入图片描述

模板有好几套,由于后台直接返的是html里的table表格 所以要用jsoup自己去转换,因为portal模板是后台动态创建的,一开始想自定义GridLayout来实现 后来发现挑起来问题挺多,加上工期紧张,暂定写死5套模板,根据td数量决定用哪套模板。

在手机端中,主要靠点击事件,大部分情况不用主观通知用户焦点所在位置,tv端则不是,主要靠焦点高亮来通知。主要有以下几种方式:

  • drawable目录下创建 selector :
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:state_focused="true" android:drawable="@mipmap/bill_focus"></item>
    <item android:drawable="@mipmap/bill"></item>
</selector>
  • View设置onFoucsChangeListener,然后根据状态更改背景:
private View.OnFocusChangeListener titlefocusChangeListener = new View.OnFocusChangeListener() {
        @Override
        public void onFocusChange(View v, boolean hasFocus) {
            int id = v.getId();
            for (int i = 0 ;i < ll_title.getChildCount();i++){
                if(id == ll_title.getChildAt(i).getId()){
                    Button btn  = (Button) ll_title.getChildAt(i);
                    if(hasFocus){
                        resetTitleColor();
                        setTab(i);
                        btn.setTextSize(AppConfig.HOME_TITLE_SIZE_CHECKED);
                        btn.setTextColor(Color.WHITE);
                    }else {
                        btn.setTextSize(AppConfig.HOME_TILE_SIZE_NORMAL);
                        if(i == select_index)
                            btn.setTextColor(getResources().getColor(R.color.title_blue));
                        else
                            btn.setTextColor(getResources().getColor(R.color.title_grey));
                    }
                    break;
                }
            }
        }
    };

接下来就是焦点的处理,同阶级布局可直接在代码中写死:

<View
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:focusable="true"
        android:nextFocusDown="@null"
        android:nextFocusLeft="@null"
        android:nextFocusRight="@null"
        android:nextFocusUp="@null" />

其余的需要自己判断 (Android系统的处理方式是就近原则,获取所有view的位置然后算距离方向最近的view)比如在我的项目中 如果移动到了最右边,再按右键则应跳转至下一个页面。或者顶部再按上应title获取焦点,再上菜单获取焦点。

具体的处理方式可以参考以下代码:

@Override
    public boolean dispatchKeyEvent(KeyEvent event) {
        LogService.e(TAG,"Action:" +event.getKeyCode());
        if(frags[select_index] == null){
            return super.dispatchKeyEvent(event);
        }
        if(event.getAction() == KeyEvent.ACTION_DOWN) {
            if (event.getKeyCode() == KeyEvent.KEYCODE_DPAD_DOWN) {
                if (MainUtils.getFocusToolBarIndex(toolViews) != -1) {//顶部焦点 直接
                    ll_title.getChildAt(select_index).requestFocus();
                    return true;
                }
                if (MainUtils.isFocusinTitle(ll_title)) {// 焦点在标题
                    frags[select_index].childViewrequestFocus(0);
                    return true;
                }
            }
            if (event.getKeyCode() == KeyEvent.KEYCODE_DPAD_UP) {
                if (MainUtils.getFocusToolBarIndex(toolViews) != -1) {//顶部焦点 直接
                    return true;
                }
                if (MainUtils.isFocusinTitle(ll_title)) {// 焦点在标题
                    btn_search.requestFocus();
                    return true;
                }
                if (frags[select_index].isOnTopSide()) {
                    ll_title.getChildAt(select_index).requestFocus();
                    return true;
                }
            }

            if (event.getKeyCode() == KeyEvent.KEYCODE_DPAD_LEFT) {
                if (btn_search.isFocused()) {
                    ll_title.getChildAt(select_index).requestFocus();
                    return true;
                }

                if (frags[select_index].isOnLeftSide() && select_index != 0) {
                    setTab(select_index - 1);
                    frags[select_index].childViewrequestFocus(1);
                    resetTitleColor();
                    ((Button)ll_title.getChildAt(select_index)).setTextColor(getResources().getColor(R.color.title_blue));
                    return true;
                }
            }
            if (event.getKeyCode() == KeyEvent.KEYCODE_DPAD_RIGHT) {
                if (ll_title.getChildAt(ll_title.getChildCount() - 1).isFocused()) {
                    btn_search.requestFocus();
                    return true;
                }

                if (frags[select_index].isOnRightSide() && select_index != ll_title.getChildCount() - 1) {
                    setTab(select_index + 1);
                    frags[select_index].childViewrequestFocus(0);
                    resetTitleColor();
                    ((Button)ll_title.getChildAt(select_index)).setTextColor(getResources().getColor(R.color.title_blue));
                    return true;
                }
            }
        }


        return super.dispatchKeyEvent(event);
    }

自己屡一下逻辑即可。

提供一些常用的KeyCode:

public static final int KEYCODE_DPAD_UP         = 19;
    /** Key code constant: Directional Pad Down key.
     * May also be synthesized from trackball motions. */
    public static final int KEYCODE_DPAD_DOWN       = 20;
    /** Key code constant: Directional Pad Left key.
     * May also be synthesized from trackball motions. */
    public static final int KEYCODE_DPAD_LEFT       = 21;
    /** Key code constant: Directional Pad Right key.
     * May also be synthesized from trackball motions. */
    public static final int KEYCODE_DPAD_RIGHT      = 22;
    /** Key code constant: Directional Pad Center key.
     * May also be synthesized from trackball motions. */
    public static final int KEYCODE_DPAD_CENTER     = 23;
    /** Key code constant: Home key.
     * This key is handled by the framework and is never delivered to applications. */
    public static final int KEYCODE_HOME            = 3;
    /** Key code constant: Back key. */
    public static final int KEYCODE_BACK            = 4;
    /** Key code constant: A Button key.
     * On a game controller, the A button should be either the button labeled A
     * or the first button on the bottom row of controller buttons. */
    public static final int KEYCODE_BUTTON_A        = 96;
    /** Key code constant: B Button key.
     * On a game controller, the B button should be either the button labeled B
     * or the second button on the bottom row of controller buttons. */
    public static final int KEYCODE_BUTTON_B        = 97;
    /** Key code constant: C Button key.
     * On a game controller, the C button should be either the button labeled C
     * or the third button on the bottom row of controller buttons. */
    public static final int KEYCODE_BUTTON_C        = 98;
    /** Key code constant: X Button key.
     * On a game controller, the X button should be either the button labeled X
     * or the first button on the upper row of controller buttons. */
    public static final int KEYCODE_BUTTON_X        = 99;
    /** Key code constant: Y Button key.
     * On a game controller, the Y button should be either the button labeled Y
     * or the second button on the upper row of controller buttons. */
    public static final int KEYCODE_BUTTON_Y        = 100;

大部分手柄厂家在GamePad模式下适配A对应确定键 B对应back键
判断触发案件的设备方法:

if(event.getSource() == InputDevice.SOURCE_GAMEPAD){//手柄模式,其他自己看源码
            
        }

待研发

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

推荐阅读更多精彩内容