问题标签 [focusable]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
2684 浏览

c# - How can I make a control lose focus if the user clicks on something that's not focusable?

I've got an ItemsControl filled with dozens of items; each item is a bound text box and a couple of buttons. Because I want the user to be able to tab from text box to text box, the buttons have Focusable set to False. This works just fine. The only problem is that since the text boxes aren't losing focus, their binding isn't updating the source, so the code behind the buttons isn't working with the right values.

I can think of a way to fix this, e.g. having the Click handler for the buttons navigate through the logical tree to their associated text box and making is binding update the source explicitly. But it seems to me that there has to be a better way than that, which would probably be obvious to me if I had a better understanding of the focus model. Is there?

0 投票
1 回答
243 浏览

apache-flex - Flex:如何在禁用时设置可聚焦的 flex 控件?

如何获得禁用的 flex 控件的焦点。

当使用 enable=false 设置 flex 控件时,该控件不可聚焦,因此不会被屏幕阅读器读取。

当用户选项卡时,它也应该转到禁用的控件。

想知道我们怎样才能克服这个限制?

0 投票
1 回答
1706 浏览

android - 如何使 listView 项中的 HTML 链接具有焦点?

我想制作一个与官方 twitter 客户端非常相似的应用程序。

在我的 listView Item 中,有一个 TextView 有一些 html 内容,我希望它里面的链接可以是可聚焦和可点击的,我用过:

但它仍然不起作用,我不知道为什么。

布局是这样的:

我希望链接可以集中而不是整个项目,这个问题已经在 google io 中讨论过,见这里,解决方案是 getListView().setItemsCanFocus(true); 但这对我不起作用。

我使用了一个扩展 BaseAdapter 的压缩适配器,我不知道这是否与它有关。

任何人?有什么帮助吗?

0 投票
1 回答
2750 浏览

wpf - 所有 WPF 控件都可聚焦吗?

是否存在 wpf 控件不可聚焦的默认异常?

我的控件需要全部可聚焦,但我不想在每次创建控件时都设置

0 投票
3 回答
7605 浏览

android - Android 布局 - ImageView 聚焦,但在屏幕上不显示任何内容(无突出显示)

如果我将 ImageView 设置为既可点击又可聚焦,它可以工作,但我无法判断哪个图像是聚焦的。让它在视图周围绘制橙色边框以便用户知道它当前处于焦点的最佳方法是什么?

我尝试将其放入 LinearLayout 并将其设置为可聚焦和可点击,但没有任何运气。即使我在它上面加了边距,也没有任何迹象表明它被选中了。

0 投票
1 回答
3575 浏览

android - 项目可聚焦时的Android ListView,禁用点击

我正在使用带有自定义适配器的 ListView,它只有一个 TextView

这是我的选择器背景:

问题是当我设置TextView属性时: android:clickable="true"android:focusable="true"

然后我看到了我的重点版本的背景,但是设置这些会导致列表项不再响应点击和长点击。删除这两个属性后,所有 ListItem 都会响应单击和长按。

应该做些什么才能使可聚焦的背景可见并且点击响应两者都起作用。

我试过打电话getListView().setItemsCanFocus(true),但问题仍然存在。

0 投票
5 回答
18598 浏览

android - 表android内的可聚焦行

我在 xml 中有一个 ScrollView,其中包括一个 TableLayout。我的问题是每次我点击它时是否有可能有一个可聚焦的行。这是我的xml代码:

我已经尝试过 "focusable="true"" 和 "focusableInTouchMode="true"" 但什么也没发生..

提前致谢

0 投票
1 回答
650 浏览

java - 黑莓中的Listfield焦点问题

我在 BlackBerry 应用程序中使用列表字段。在每个列表字段项中,我在左侧有一个位图字段,在中心有一个文本,在右侧又有一个位图字段。
我能否确定这些字段在黑莓设备键盘版本(例如 BlackBery Tour)的列表字段行内是否可聚焦?

0 投票
1 回答
1682 浏览

refresh - JTextPane 避免闪烁

我有一个 JTextArea,我想禁用它的闪烁。我试图将focusable设置为false,但它似乎不起作用。我还将editable设置为false,它也不起作用。任何的想法?

0 投票
2 回答
7495 浏览

wpf - WPF 如何使列表框/列表视图无法聚焦

我一直在尝试在列表框/列表视图中显示一些无法聚焦的数据(我的意思不仅是列表,还包括其中的项目)。

我尝试了两种类型的列表(列表框和列表视图),并使用了它们的 ItemTemplate 和 ItemContainerStyle。我尽可能将 Focusable 属性设置为 false。

除了禁用列表之外,我没有看到任何其他方法,但是我必须更改其所有样式,以使其显示为未禁用。

我错过了什么吗?是否有我不知道的只读类型的列表?

谢谢你的想法:)