首页 > 代码库 > Android TV 选中高亮显示
Android TV 选中高亮显示
1、开发Android TV APP, 使用遥控器选中按钮或者选着其它菜单
如果没有高亮显示,就看不出选中哪个按钮或者菜单
2、在drawable 添加 border_red.xml 设置选中高亮
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <corners android:radius="2dp"/> <stroke android:color="#FF0000" android:width="3dp" /> <solid android:color="#00FF0000" /> </shape>
3、在 layout 添加页面xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <RelativeLayout android:focusable="false" android:gravity="center" android:layout_gravity="center" android:clipToPadding="false" android:clipChildren="false" android:id="@+id/main" android:layout_width="match_parent" android:layout_height="wrap_content"> <Button android:id="@+id/button_id_1" android:layout_width="match_parent" android:gravity="center" android:layout_height="wrap_content" android:background="#303F9F" android:focusableInTouchMode="true" android:textColor="#FFF" android:layout_marginTop="10dp" android:layout_marginLeft="0dp" android:text="按钮" android:textSize="60dp" /> <Button android:id="@+id/button_id_2" android:layout_below="@id/button_id_1" android:layout_width="match_parent" android:gravity="center" android:layout_height="wrap_content" android:background="#303F9F" android:focusableInTouchMode="true" android:textColor="#FFF" android:text="按钮" android:layout_marginTop="30dp" android:textSize="60dp" /> <Button android:id="@+id/button_id_3" android:layout_width="match_parent" android:gravity="center" android:layout_height="wrap_content" android:background="#303F9F" android:layout_below="@id/button_id_2" android:focusableInTouchMode="true" android:textColor="#FFF" android:text="按钮" android:layout_marginTop="30dp" android:textSize="60dp" /> </RelativeLayout> </LinearLayout>
4、添加选中高亮显示,设置焦点控制
BorderView border = new BorderView(this); border.setBackgroundResource(R.drawable.border_red); main = (RelativeLayout) findViewById(R.id.main); border.attachTo(main);
Android TV 选中高亮显示
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。