我正在尝试实现自定义foo.objects.filter(type='c').latest('date_added')
,其中TabLayout
内的标签页应具有自定义背景。我想使用向左/向右箭头键将焦点放在选项卡项上。
Tablayout
tab_focused.xml
tabView = LayoutInflater.from(mContext).inflate(R.layout.tab_item_background,null);
TextView textView = (TextView) tabView.findViewById(R.id.tab_text);
textView.setText(tab.getText());
tabView.setFocusable View(true);
tabView.setFocusableInTouchMode(true);
tab.setCustomView(tabView);
当我尝试使用向左/向右箭头键导航时,无法获得焦点状态。我想念什么吗?
<size android:height="38dp" android:width="40dp"/>
<stroke android:width="2dp"
android:color="@color/lightest_blue5"/>
中哪个Tab
具有焦点?Tablayout
内部的tabItem
上?