Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 fire-tv 构建一个商业应用程序,我需要更改软键盘。添加键,调整键盘大小以适应屏幕等。如何在消防电视上完成?
自定义默认屏幕键盘的选项有限。
在定义EditText项目时,您可以在 XML 中使用android:inputType="number"切换到数字键盘。
EditText
android:inputType="number"
如果您查看UIWidgetsSampleAmazon Fire TV SDK 中的示例应用程序,还有一些其他选项可用于自定义屏幕键盘(例如电子邮件),但是对于大规模自定义,您可能希望像 Hulu 或 Netflix 那样做实现自己的完全控制
UIWidgetsSample